mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-27 00:47:00 +07:00
1520e434af
GitOrigin-RevId: a6020c6427a05f0bcd6f6987a13252929854c547
17 lines
323 B
Java
17 lines
323 B
Java
// "Extract side effects as an 'if' statement" "true"
|
|
class Z {
|
|
|
|
void z() {
|
|
if (foo) {
|
|
switch (0) {
|
|
case 0:
|
|
break;
|
|
case 1:
|
|
break;
|
|
default:
|
|
new Foo().getBar();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} |