variable incomplete code searcher should not find methods with the same name even if they are also unresolved; inline covered by RefactoringUtil.renameVariableReferences() (IDEA-126312)

This commit is contained in:
Anna Kozlova
2014-06-18 17:17:13 +02:00
parent aecfed29e7
commit f0f8dd1db2
4 changed files with 27 additions and 0 deletions
@@ -0,0 +1,9 @@
class Test {
public boolean isConsideredFinal(int cl) {
return cl == cl();
}
int cl() {
return 0;
}
}