mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
7 lines
205 B
Java
7 lines
205 B
Java
// "Remove redundant 'append()' call" "true"
|
|
class Foo {
|
|
public static void main(String[] args) {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("foo").ap<caret>pend(("")).append("bar");
|
|
}
|
|
} |