mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
- fixes - not double error messages GitOrigin-RevId: 8f789243ee4e09d3eb8de6a2db7dcbe25ee517db
11 lines
169 B
Java
11 lines
169 B
Java
class IncompleteSwitchFixColon {
|
|
|
|
public void testStatement(char o) {
|
|
|
|
switch (o) {
|
|
case '2'-> System.out.println("1");
|
|
case '1' -><caret>
|
|
}
|
|
}
|
|
}
|