mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 16:19:58 +07:00
IDEA-242810 Add colon to completion after "case" keyword
GitOrigin-RevId: 3b908b2eed06b41e08ef1c739d90a299389db8c9
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f4618a1246
commit
824259dfc0
+8
@@ -0,0 +1,8 @@
|
||||
class Main {
|
||||
public static final String STRING_CONSTANT = "abc";
|
||||
public static void main(String[] args) {
|
||||
switch (args[0]) {
|
||||
case STRC<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class Main {
|
||||
public static final String STRING_CONSTANT = "abc";
|
||||
public static void main(String[] args) {
|
||||
switch (args[0]) {
|
||||
case STRING_CONSTANT:<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
public class Demo {
|
||||
void foo(Integer i){
|
||||
switch(i) {
|
||||
case Types.CHAR<caret>
|
||||
case Types.CHAR:<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user