mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
java completion: prefer similar names with mismatching case (IDEA-188085)
This commit is contained in:
+16
@@ -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>)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user