IDEA-154891 IDEA adds unnecessary space/colon on switch case autocompletion

This commit is contained in:
peter
2016-04-29 22:56:20 +02:00
parent 6663489749
commit 48b941daa8
4 changed files with 24 additions and 1 deletions
@@ -0,0 +1,11 @@
class Foo {
void foo(Constants c) {
switch (c) {
case B<caret>
}
}
}
enum Constants {
BAR0, BAR1;
}
@@ -0,0 +1,11 @@
class Foo {
void foo(Constants c) {
switch (c) {
case BAR0:<caret>
}
}
}
enum Constants {
BAR0, BAR1;
}