mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 10:16:28 +07:00
GitOrigin-RevId: 5c958dfd8b5f55e9e5bede82be5015c3299dd16e
7 lines
171 B
Java
7 lines
171 B
Java
// "Fix all 'Redundant 'String' operation' problems in file" "true"
|
|
class Foo {
|
|
void test(String s) {
|
|
String s1 = "";
|
|
String s2 = s.substring(s1.length());
|
|
}
|
|
} |