mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
7 lines
205 B
Java
7 lines
205 B
Java
// "Fix all 'Redundant 'String' operation' problems in file" "true"
|
|
class Foo {
|
|
void test(String s) {
|
|
String s1 = s.substring(1, s.leng<caret>th());
|
|
String s2 = s.substring(2, s1.length());
|
|
}
|
|
} |