mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
7 lines
193 B
Java
7 lines
193 B
Java
// "Remove redundant 'append()' call" "true-preview"
|
|
class Foo {
|
|
public static void main(String[] args) {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append("foo").append("bar");
|
|
}
|
|
} |