Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/afterParenthesis.java

10 lines
212 B
Java

// "Invert If Condition" "true"
class A {
public boolean foo(boolean a, boolean b, boolean c, boolean d) {
if ((a || b) && !c && !d) {
return true;
}
return false;
}
}