mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 19:42:48 +07:00
c582d1c4c4
GitOrigin-RevId: 4f4e0965726596bf9b188b16b100e13a0072b38b
12 lines
291 B
Java
12 lines
291 B
Java
// "Remove switch branch 'default'" "true"
|
|
class Main {
|
|
void test(Integer i) {
|
|
switch (i) {
|
|
case 1, 2, default:
|
|
System.out.println("A");
|
|
break;
|
|
case <caret>default:
|
|
System.out.println("B");
|
|
}
|
|
}
|
|
} |