mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 12:34:00 +07:00
- exclude braces from selection GitOrigin-RevId: 1a0d1d6a237e9069b60321668c2ef9f570a82464
15 lines
244 B
Java
15 lines
244 B
Java
public class TestSwitchSelect
|
|
{
|
|
public static void main(String[] args)
|
|
{
|
|
switch (type) {
|
|
case 1:
|
|
break;
|
|
|
|
case 2:
|
|
break;
|
|
default:
|
|
break;
|
|
<caret>}
|
|
}
|
|
} |