mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 37b86167b5d2b1cac74365eaadbf3a5ddf792f69
7 lines
187 B
Java
7 lines
187 B
Java
// "Remove redundant 'substring()' call" "true-preview"
|
|
class Foo {
|
|
public void x(String arg) {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(arg.subs<caret>tring(2));
|
|
}
|
|
} |