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

16 lines
217 B
Java

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