mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
provide enum constructor package local modifier according to spec examples (IDEA-111785)
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ public enum MyEnum
|
||||
VALUE_ONE(myField);
|
||||
private final int myField;
|
||||
|
||||
private MyEnum(int myField) {
|
||||
MyEnum(int myField) {
|
||||
this.myField = myField;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user