mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
8 lines
179 B
Java
8 lines
179 B
Java
// "Simplify 'arg.isEmpty()' to false" "false"
|
|
class Test {
|
|
void test() {
|
|
String arg = "12";
|
|
Boolean result = arg != null && (<caret>arg.isEmpty() ? true : null);
|
|
}
|
|
}
|