mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 09:47:51 +07:00
GitOrigin-RevId: 411e4842d0ecf8cf4db0308f854e179dee46ced3
15 lines
244 B
Java
15 lines
244 B
Java
// "Replace with enhanced 'switch' statement" "true-preview"
|
|
|
|
class A {
|
|
private void f() {
|
|
<caret>switch (1) {
|
|
case 1:
|
|
o.act(); //
|
|
break;
|
|
case 2:
|
|
o.act(); //
|
|
o.act();
|
|
break;
|
|
}
|
|
}
|
|
} |