blob: da423aee978137fce1aaf4ea91e5d774c38f229c [file] [log] [blame]
// "Swap If Statements" "true"
class A {
void m() {
if (otherCondition) {
doAnotherAction();
} else if (someCondition) {
doSomeAction();
} else {
defaultAction();
}
}
}