mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
7 lines
165 B
Java
7 lines
165 B
Java
class Foo {
|
|
void test() {
|
|
StringBuilder sb = new StringBuilder();
|
|
if(sb.length() == 0) <caret>sb.append("bar");
|
|
sb.append("baz");
|
|
}
|
|
} |