IDEA-123782 "Complete current statement" doesn't put colon for case branches

This commit is contained in:
peter
2014-04-18 22:37:32 +02:00
parent 7a2cc544f3
commit 996d0c6a63
5 changed files with 54 additions and 0 deletions
@@ -0,0 +1,8 @@
class Foo {
void foo(String a) {
switch (a) {
case "asdf<caret>"
}
}
}