Files
openide/java/java-tests/testData/codeInsight/invertIfCondition/afterEmptyParenthesis.java
T

11 lines
183 B
Java

// "Invert 'if' condition" "true"
class A {
public boolean foo() {
if (!()) {
return true;
}
else {
return false;
}
}
}