mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
12 lines
235 B
Java
12 lines
235 B
Java
// "Replace with 'Boolean.TRUE.equals(flag)'" "false"
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
boolean test(@NotNull Boolean flag) {
|
|
if (<caret>flag) {
|
|
System.out.println("ok");
|
|
}
|
|
return true;
|
|
}
|
|
} |