blob: a85d91f5f16926d0bc57ac8ef6ed1400d228f131 [file] [log] [blame]
package com.siyeh.igfixes.style.replace_with_string;
class Marathon {
private static void test(boolean marathon) {
String s1 = new <caret>StringBuilder(marathon ? "AAA": "BBB").append("CCC").toString();
}
}