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

7 lines
184 B
Java

// "Remove redundant 'substring()' call" "true-preview"
class Foo {
public void x(String arg) {
StringBuilder sb = new StringBuilder();
sb.append(arg, 2, arg.length());
}
}