don't consider generic methods getters for smart completion sorting (IDEA-200682)

This commit is contained in:
peter
2018-11-13 19:37:31 +01:00
parent 686a72b912
commit aaae6f8efb
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,12 @@
class F {
static E myE;
static E getE() { return myE; }
{
E e = <caret>
}
<T> T getGeneric(Class<T> c) {}
}
class E {}