mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 16:19:58 +07:00
IDEA-84428 Basic completion not working for methods from static imports
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import static Foo.assertNotNull;
|
||||
|
||||
class Foo {
|
||||
static void assertNotNull() {}
|
||||
}
|
||||
|
||||
class Bar {
|
||||
{
|
||||
asnn<caret> lists.get(0).size() > 0);
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import static Foo.assertNotNull;
|
||||
|
||||
class Foo {
|
||||
static void assertNotNull() {}
|
||||
}
|
||||
|
||||
class Bar {
|
||||
{
|
||||
assertNotNull();<caret> lists.get(0).size() > 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user