mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
9 lines
274 B
Java
9 lines
274 B
Java
// "Fix all 'Redundant 'String' operation' problems in file" "true"
|
|
class Foo {
|
|
public static void main(String[] args) {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.appe<caret>nd("");
|
|
(sb = new StringBuilder()).append("");
|
|
(sb.append("x")).append("");
|
|
}
|
|
} |