mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
- fixes - not double error messages GitOrigin-RevId: 8f789243ee4e09d3eb8de6a2db7dcbe25ee517db
13 lines
189 B
Java
13 lines
189 B
Java
class IncompleteSwitchFixColon {
|
|
|
|
public void testStatement(char o) {
|
|
|
|
switch (o) {
|
|
case '2':
|
|
System.out.println("1");
|
|
break;
|
|
case '1':<caret>
|
|
}
|
|
}
|
|
}
|