mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 17:07:05 +07:00
IDEA-66899 Completing enum constant defined in the same class (private) will insert full FQN (including parent class name) instead of EnumName.ENUM_VALUE
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Foo {
|
||||
{
|
||||
Bar b = FOOOO<caret>
|
||||
}
|
||||
|
||||
enum Bar {
|
||||
FOOOOOOO
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class Foo {
|
||||
{
|
||||
Bar b = Bar.FOOOOOOO<caret>
|
||||
}
|
||||
|
||||
enum Bar {
|
||||
FOOOOOOO
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user