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

This commit is contained in:
peter
2014-04-18 13:26:37 +02:00
parent 7a2cc544f3
commit 996d0c6a63
5 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class Foo {
void foo(String a) {
switch (a) {
case "asdf<caret>"
}
}
}