mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: f328b47c3c64b6f078f89fa04f0353ec34d57f24
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());
|
|
}
|
|
} |