Files
2022-11-10 01:05:51 +00:00

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; }
}