mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 06:01:00 +07:00
GitOrigin-RevId: 4c59710e2304288ad4465a92ec36bff633bd661e
15 lines
326 B
Java
15 lines
326 B
Java
public class Test {
|
|
|
|
void test() {
|
|
<selection>if (isGood() && isApplicable()) {
|
|
System.out.println();
|
|
}</selection>
|
|
if (!isGood() && isApplicable()) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
boolean isGood() { return true; }
|
|
|
|
boolean isApplicable() { return true; }
|
|
} |