mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
12 lines
146 B
Java
12 lines
146 B
Java
// "Swap 'if' statements" "true-preview"
|
|
class A {
|
|
|
|
void m() {
|
|
|
|
if (cond2) m2();
|
|
else if (cond1) m1();
|
|
else if (cond3) m3();
|
|
|
|
}
|
|
|
|
} |