// "Swap If Statements" "true" class A { void m() { if (cond1) m1(); else if (cond2) m2(); else if (cond3) m3(); } }