mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 02:09:59 +07:00
allow to add static import for containing class when it already contains imported members (IDEA-96156)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import static foo.Clazz.Foo.Const_1;
|
||||
|
||||
class MyObject{
|
||||
public void doIt(){
|
||||
foo.Clazz.Fo<caret>o.Const_1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import static foo.Clazz.Foo;
|
||||
import static foo.Clazz.Foo.Const_1;
|
||||
|
||||
class MyObject{
|
||||
public void doIt(){
|
||||
Foo.Const_1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user