mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 18:03:06 +07:00
23 lines
508 B
Java
23 lines
508 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
import java.util.List;
|
|
|
|
class Foo {
|
|
|
|
public static void main(@Nullable Boolean hasMissingGems, List<String> missing) {
|
|
if (hasMissingGems != null && hasMissingGems) {
|
|
return;
|
|
}
|
|
|
|
if (hasMissingGems == null && missing.size() > 0) {
|
|
|
|
}
|
|
|
|
}
|
|
public static void main2(@Nullable Boolean hasMissingGems, List<String> missing) {
|
|
if ((hasMissingGems != null && hasMissingGems) || (hasMissingGems == null && missing.size() > 0)) {
|
|
|
|
}
|
|
|
|
}
|
|
} |