mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
12 lines
264 B
Java
12 lines
264 B
Java
// "Replace with 'Boolean.FALSE.equals(flag)'" "true-preview"
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
public boolean b;
|
|
public boolean c;
|
|
|
|
boolean test(@Nullable Boolean flag) {
|
|
return c ? b && !/*a*/(/*b*/(/*c*/<caret>flag)) : c;
|
|
}
|
|
} |