Java: Avoid duplicates for shadowed members in completion list for arguments of reflection calls. Simplify building the list of method names with PsiClass.getVisibleSignatures() (IDEA-167250)

This commit is contained in:
Pavel Dolgov
2017-03-03 12:04:52 +03:00
parent 9f2db277e9
commit aedc783354
25 changed files with 213 additions and 29 deletions
@@ -7,9 +7,11 @@ class Main {
class Test extends Parent {
public void method(){}
void method3(){}
private void method5(){}
}
class Parent {
public void method2(){}
void method4(){}
private void method6(){}
}