mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
enable add import for inner classes (IDEA-183488)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
|
||||
import foo.Foo;
|
||||
|
||||
class Test {
|
||||
void test() {
|
||||
Foo.B<caret>ar bar;
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
import foo.Foo;
|
||||
import foo.Foo.Bar;
|
||||
|
||||
class Test {
|
||||
void test() {
|
||||
Bar bar;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user