Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/swapIfStatements/afterBase.java

16 lines
210 B
Java

// "Swap If Statements" "true"
class A {
void m() {
if (otherCondition) {
doAnotherAction();
} else if (someCondition) {
doSomeAction();
} else {
defaultAction();
}
}
}