IDEA-167777 Code completion (ctrl+space) ignores static imports from interfaces.

This commit is contained in:
peter
2017-02-08 18:49:11 +01:00
parent 0ec0856843
commit abeb3aae84
4 changed files with 66 additions and 33 deletions
@@ -0,0 +1,10 @@
package pkg;
import static pkg.Point.point;
public class SomeClass {
public Point getSomePoint() {
return poi<caret>
// ^^
}
}
@@ -0,0 +1,10 @@
package pkg;
import static pkg.Point.point;
public class SomeClass {
public Point getSomePoint() {
return point(<caret>)
// ^^
}
}