mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
16 lines
321 B
Java
16 lines
321 B
Java
class C {
|
|
void foo(boolean a, boolean b, boolean c) {
|
|
if (a &<caret>& b) {
|
|
call();
|
|
} // foo
|
|
else if (a && c) {
|
|
otherCall();
|
|
} // bar
|
|
else if(a) {
|
|
thirdCall();
|
|
} // baz
|
|
else {
|
|
fourthCall();
|
|
} // qux
|
|
}
|
|
} |