mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 19:49:20 +07:00
85fd5fb24f
GitOrigin-RevId: d136a7fee6bb26e8676d31d57a98f945959b3605
12 lines
259 B
Java
12 lines
259 B
Java
// "Replace with 'Boolean.TRUE.equals(flag)'" "true"
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Test {
|
|
boolean test(@Nullable Boolean flag) {
|
|
if (/*a*/Boolean.TRUE.equals(flag)/*b*/) {
|
|
System.out.println("ok");
|
|
}
|
|
return true;
|
|
}
|
|
} |