mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
now works on java.lang.Appendable and splits concatenated strings into separate append calls
6 lines
154 B
Java
6 lines
154 B
Java
// "Change to 'appendable.append(1)'" "true"
|
|
class Test {
|
|
void appendable(StringBuilder appendable) throws IOException {
|
|
appendable.append(1);
|
|
}
|
|
} |