mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
IDEA-52529 enum member not suggested while adding a static array right in the enum class
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public enum ButtonKey {
|
||||
CANCEL_ALL,
|
||||
CANCEL_SELL;
|
||||
|
||||
public static final ButtonKey[] ARR = {CANCEL_ALL, CANCEL_S<caret>};
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public enum ButtonKey {
|
||||
CANCEL_ALL,
|
||||
CANCEL_SELL;
|
||||
|
||||
public static final ButtonKey[] ARR = {CANCEL_ALL, CANCEL_SELL<caret>};
|
||||
}
|
||||
Reference in New Issue
Block a user