mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
now works on java.lang.Appendable and splits concatenated strings into separate append calls
7 lines
173 B
Java
7 lines
173 B
Java
// "Change to 'builder.append(1+1).append(s).append(" ")'" "true"
|
|
class Test {
|
|
String s;
|
|
void bar(StringBuilder builder) {
|
|
buil<caret>der += 1 + 1 + s + " ";
|
|
}
|
|
} |