Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/extractIfCondition/afterMissedBrackets.java

16 lines
368 B
Java

// "Extract if (a)" "true"
class TestThreadInspection {
void f(boolean a, boolean b, boolean c){
if (a)
if (b) {
System.out.println("a&b");//first comment
} else {
if (c) {
System.out.println("c");
}
}
else if (c) {
System.out.println("c");
}
}
}