mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
14 lines
208 B
Plaintext
14 lines
208 B
Plaintext
class Test {
|
|
static boolean isA() {
|
|
return true;
|
|
}
|
|
|
|
static boolean isB() {
|
|
return true;
|
|
}
|
|
|
|
private static void foo(final boolean explicit) {
|
|
if (explicit ? isA() : isB()) {
|
|
}
|
|
}
|
|
} |