blob: 146510c19e0f8d9d6ca5066a75437e97827c791b [file] [log] [blame]
// "Swap If Statements" "true"
class A {
void m() {
if (someCondition) {
doSomeAction();
} e<caret>lse if (otherCondition) {
doAnotherAction();
} else {
defaultAction();
}
}
}