Files
2022-08-29 22:19:49 +00:00

7 lines
199 B
Java

// "Fix all 'Redundant 'String' operation' problems in file" "true"
class Foo {
void test(String s) {
String s1 = s.substring<caret>(s.length());
String s2 = s.substring(s1.length());
}
}