mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
move member: restore qualifier in switch labels for non-enum constants (IDEA-147539)
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
public class B {
|
||||
|
||||
public static final String FOO = "FOO";
|
||||
}
|
||||
|
||||
class U {
|
||||
public void example(String foo) {
|
||||
switch (foo) {
|
||||
case B.FOO:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user