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

11 lines
185 B
Java

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