mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
IDEA-167777 Code completion (ctrl+space) ignores static imports from interfaces.
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
package pkg;
|
||||
|
||||
import static pkg.Point.point;
|
||||
|
||||
public class SomeClass {
|
||||
public Point getSomePoint() {
|
||||
return poi<caret>
|
||||
// ^^
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
package pkg;
|
||||
|
||||
import static pkg.Point.point;
|
||||
|
||||
public class SomeClass {
|
||||
public Point getSomePoint() {
|
||||
return point(<caret>)
|
||||
// ^^
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user