mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 13:45:34 +07:00
d82ff9650f
GitOrigin-RevId: b0b956ad677ce1ecdc80070e25877aef8dc65100
8 lines
165 B
Java
8 lines
165 B
Java
// "Simplify 'arg.isEmpty()' to false" "false"
|
|
class Test {
|
|
void test() {
|
|
String arg = "12";
|
|
Integer result = 2 * (<caret>arg.isEmpty() ? 1 : null);
|
|
}
|
|
}
|