mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 19:49:20 +07:00
a117b21680
GitOrigin-RevId: 45952b11139cf435e218ddd9c3ba57e237230eed
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;
|
|
}
|
|
} |