mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
8 lines
192 B
Java
8 lines
192 B
Java
// "Remove redundant 'toLowerCase()' call" "true-preview"
|
|
class X {
|
|
void test(String string) {
|
|
if (string.to<caret>LowerCase().isEmpty()) {
|
|
System.out.println("Empty");
|
|
}
|
|
}
|
|
} |