Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/replaceWithNullCheck/afterNotEqualsNull.java

8 lines
110 B
Java

// "Replace '!equals()' with '!='" "true"
class Test {
void foo(Object o) {
if(o != null) {
}
}
}