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