// "Fix all 'Redundant String operation' problems in file" "true" class StringBuilderToStringArgs { private static final String CONST_STRING_VAL = "Hello"; static String str() { return ""; } static void stringBuilderToStringArgs(StringBuilder sb) { /* 2 */ /* 3 */ /* 4 */ System.out.println(/* 1 */sb/* 5 */ + "Hello"); /* 2 */ /* 3 */ /* 4 */ System.out.println("Hello" + /* 1 */sb/* 5 */); System.out.println(/* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */ + 42); /* 2 */ /* 3 */ /* 4 */ System.out.println("Hello" + /* 1 */sb/* 5 */ + 42); final String finalVal = "Hello"; /* 2 */ /* 3 */ /* 4 */ System.out.println(/* 1 */sb/* 5 */ + finalVal); /* 2 */ /* 3 */ /* 4 */ System.out.println(finalVal + /* 1 */sb/* 5 */); /* 2 */ /* 3 */ /* 4 */ System.out.println(finalVal + /* 1 */sb/* 5 */ + 42); String stringVal = "Hello"; /* 2 */ /* 3 */ /* 4 */ System.out.println(stringVal + /* 1 */sb/* 5 */ + 42); int intVal = 42; System.out.println(intVal + /* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */ + 42); final int constIntVal = 42; System.out.println(/* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */ + constIntVal); System.out.println(constIntVal + /* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */); System.out.println(constIntVal + /* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */ + 42); /* 2 */ /* 3 */ /* 4 */ System.out.println(CONST_STRING_VAL + /* 1 */sb/* 5 */); /* 2 */ /* 3 */ /* 4 */ System.out.println(/* 1 */sb/* 5 */ + CONST_STRING_VAL); /* 2 */ /* 3 */ /* 4 */ System.out.println(CONST_STRING_VAL + /* 1 */sb/* 5 */ + 42); /* 2 */ /* 3 */ /* 4 */ System.out.println(str() + /* 1 */sb/* 5 */); /* 2 */ /* 3 */ /* 4 */ System.out.println(/* 1 */sb/* 5 */ + str()); /* 2 */ /* 3 */ /* 4 */ System.out.println(str() + /* 1 */sb/* 5 */ + str()); System.out.println(/* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */ + /* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */); System.out.println(/* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */ + /* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */ + /* 1 */sb./* 2 */toString/* 3 */(/* 4 */)/* 5 */); System.out.println(("Hello" + sb) + sb + sb); System.out.println(("Hello" + sb) + sb + sb); System.out.println((("Hello" + sb) + sb) + sb); System.out.println(("Hello" + sb + (sb.toString() + ((sb.toString()))))); System.out.println(("Hello" + sb + (sb + ((sb) + "Hello")))); System.out.println(("Hello" + sb + (sb + ((sb.toString()) + 42)))); } }