mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
disprefer unlikely interfaces in basic completion after new (IDEA-193609)
just like in smart one
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
class Test {
|
||||
Intf i = new <caret>
|
||||
}
|
||||
|
||||
interface Intf {
|
||||
void foo();
|
||||
void bar();
|
||||
void goo();
|
||||
}
|
||||
|
||||
class IntfImpl implements Intf {
|
||||
public void foo() {}
|
||||
public void bar() {}
|
||||
public void goo() {}
|
||||
}
|
||||
Reference in New Issue
Block a user