mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
15 lines
242 B
Java
15 lines
242 B
Java
class Test {
|
|
static boolean isA() {
|
|
return true;
|
|
}
|
|
|
|
static boolean isB() {
|
|
return true;
|
|
}
|
|
|
|
private static void foo(final boolean explicit) {
|
|
final boolean has = explicit ? isA() : isB();
|
|
if (ha<caret>s) {
|
|
}
|
|
}
|
|
} |