// "Fix all 'Redundant call to 'String.format()'' problems in file" "true" import java.io.PrintStream; import java.util.Locale; import static java.lang.String.format; class Main { static { String s1 = "test"; String s1n = format("test%n"); String s2 = "test"; String s2n = format(Locale.US, "test%n"); String s3 = "test"; String s3l = "test"; String s3n = String.format(Locale.US, "test%n"); System.out.println(/* one */ /* two */ /* three */ "hello, " /* four */); } Main() { String s1 = "test"; String s1n = format("test%n"); String s2 = "test"; String s2n = format(Locale.US, "test%n"); String s3 = "test"; String s3l = "test"; String s3n = String.format(Locale.US, "test%n"); } void f() { String s1 = "test"; String s1n = format("test%n"); String s2 = "test"; String s2n = format(Locale.US, "test%n"); String s3 = "test"; String s3l = "test"; String s3n = String.format(Locale.US, "test%n"); } }