Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/extractIfCondition/beforeOrSimpleElse.java
2017-11-24 18:41:42 +01:00

12 lines
241 B
Java

// "Extract if (a)" "true"
class TestThreadInspection {
void f(boolean a, boolean b, boolean c){
if (<caret>a || b) {
System.out.println("a&b");
}
//simple end comment
else {
System.out.println("c");
}
}
}