[java-completion] Complete statement: use arrow instead of colon in rule switch (IDEA-309553)

GitOrigin-RevId: 74a10e28de1dfb1667bb4a29688ab4c710b73bf4
This commit is contained in:
Tagir Valeev
2023-01-11 15:56:33 +01:00
committed by intellij-monorepo-bot
parent 5263b8ca9e
commit 01db701bec
6 changed files with 42 additions and 5 deletions

View File

@@ -2,6 +2,7 @@
class Foo {
void foo(String a) {
switch (a) {
case "x":break;
case "asdf<caret>"
}
}