mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-157276 Code completion should disprefer primitive names in method calls
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
class Xxx extends Super {
|
||||
void mm() {
|
||||
bar(d<caret>)
|
||||
}
|
||||
|
||||
void bar(Doo d) {}
|
||||
|
||||
static class Doo {
|
||||
static Doo doo() {}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class Super {
|
||||
Object dx() {}
|
||||
}
|
||||
Reference in New Issue
Block a user