mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-152354 Code completion items order should be aware of MyClass.class
This commit is contained in:
@@ -20,6 +20,6 @@ interface Super
|
||||
|
||||
interface Sub extends Super {
|
||||
default void foo() {
|
||||
Super.<caret>
|
||||
Super.s<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class Log {
|
||||
{
|
||||
getLogger(Log.<caret>)
|
||||
}
|
||||
Log getLogger(Class clazz) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user