mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
IDEA-75812 IDEA doesn't suggest keyword 'break' in switch structure
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class ConstConfig {
|
||||
{
|
||||
switch (x) {
|
||||
case 1:
|
||||
println(1);
|
||||
brea<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
public class ConstConfig {
|
||||
{
|
||||
switch (x) {
|
||||
case 1:
|
||||
println(1);
|
||||
break;<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user