Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/swapIfStatements/afterBase.java
2014-12-06 11:38:01 +03:00

16 lines
212 B
Java

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