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

8 lines
109 B
Java

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