java completion: prefer similar names with mismatching case (IDEA-188085)

This commit is contained in:
peter
2018-04-30 19:56:55 +02:00
parent 0dbe2f709f
commit 21d46114ee
3 changed files with 25 additions and 14 deletions
@@ -0,0 +1,16 @@
class Bar {
Goo a;
Goo b;
Goo superclass;
}
class Goo {}
class Foo {
Bar b;
void method(Goo superClass) {} //note case difference
{
method(<caret>)
}
}