Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithIf/after2.java
2010-06-25 12:46:40 +04:00

9 lines
192 B
Java

// "Surround with 'if (s != null)'" "true"
class A {
void foo(){
String s = null;
if (s != null<caret>) {
for (int i=0; i!=s.hashCode();i++){}
}
}
}