Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantStringOperation/afterToLowerCaseIsEmpty.java
2019-11-07 02:40:58 +00:00

8 lines
163 B
Java

// "Remove redundant 'toLowerCase()' call" "true"
class X {
void test(String string) {
if (string.isEmpty()) {
System.out.println("Empty");
}
}
}