mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
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);
|
|
}
|
|
}
|