mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-141330 Find Usages cannot find valid usage from abstract class
This commit is contained in:
+2
-2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2000-2014 JetBrains s.r.o.
|
||||
* Copyright 2000-2015 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -61,7 +61,7 @@ public class JavaAllOverridingMethodsSearcher implements QueryExecutor<Pair<PsiM
|
||||
PsiSubstitutor substitutor = null;
|
||||
|
||||
for (String name : methods.keySet()) {
|
||||
if (inheritor.findMethodsByName(name, false).length == 0) continue;
|
||||
if (inheritor.findMethodsByName(name, true).length == 0) continue;
|
||||
|
||||
for (PsiMethod method : methods.get(name)) {
|
||||
if (method.hasModifierProperty(PsiModifier.PACKAGE_LOCAL) &&
|
||||
|
||||
Reference in New Issue
Block a user