mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 13:45:34 +07:00
d82ff9650f
GitOrigin-RevId: b0b956ad677ce1ecdc80070e25877aef8dc65100
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);
|
|
}
|
|
}
|