mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-14 13:06:52 +07:00
now works on java.lang.Appendable and splits concatenated strings into separate append calls
6 lines
156 B
Java
6 lines
156 B
Java
// "Change to 'appendable.append(1)'" "true"
|
|
class Test {
|
|
void appendable(StringBuilder appendable) throws IOException {
|
|
appendab<caret>le += 1;
|
|
}
|
|
} |