mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 13:43:29 +07:00
GitOrigin-RevId: 4c59710e2304288ad4465a92ec36bff633bd661e
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; }
|
|
} |