Files
2024-03-18 00:08:54 +00:00

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));
}
}