mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
17 lines
321 B
Java
17 lines
321 B
Java
public class Test {
|
|
|
|
void test() {
|
|
extracted(isGood());
|
|
extracted(!isGood());
|
|
}
|
|
|
|
private void extracted(boolean Good) {
|
|
if (Good && isApplicable()) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
boolean isGood() { return true; }
|
|
|
|
boolean isApplicable() { return true; }
|
|
} |