mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
7 lines
199 B
Java
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());
|
|
}
|
|
} |