"too generic method" completion sorting criteria shouldn't be applied in void context (IDEA-154635)

This commit is contained in:
peter
2016-05-02 08:58:55 +02:00
parent 2f486ed36c
commit 905527c804
4 changed files with 19 additions and 3 deletions
@@ -0,0 +1,9 @@
class Test {
void nonGeneric() {}
<T> T generic() {}
{
this.<caret>
}
}