File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -3986,6 +3986,11 @@ static String cproverFormatArgument(Object obj) {
39863986 * <li>
39873987 * having 5 arguments or more makes the solver slow
39883988 * </li>
3989+ * <li>
3990+ * the string "null" is interpreted the same way {@code null} would be by
3991+ * the JDK String.format function, which is correct for the %s format
3992+ * specifier but not %b for instance.
3993+ * </li>
39893994 * </ul>
39903995 * @diffblue.untested
39913996 */
@@ -4046,7 +4051,8 @@ public static String format(String format, Object... args) {
40464051 * @see java.util.Formatter
40474052 * @since 1.5
40484053 *
4049- * @diffblue.limitedSupport The locale argument is ignored
4054+ * @diffblue.limitedSupport The locale argument is ignored and it has the
4055+ * same limitations as {@link #format(String, Object...)}.
40504056 */
40514057 public static String format (Locale l , String format , Object ... args ) {
40524058 // return new Formatter(l).format(format, args).toString();
You can’t perform that action at this time.
0 commit comments