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

16 lines
219 B
Java

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