mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
cleanup
This commit is contained in:
+2
-3
@@ -77,9 +77,8 @@ public class DefaultSymbolNavigationContributor implements ChooseByNameContribut
|
||||
|
||||
private static PsiMethod[] filterInheritedMethods(PsiMethod[] methods) {
|
||||
ArrayList<PsiMethod> list = new ArrayList<PsiMethod>(methods.length);
|
||||
ProgressManager progressManager = ProgressManager.getInstance();
|
||||
for (PsiMethod method : methods) {
|
||||
progressManager.checkCanceled();
|
||||
ProgressManager.checkCanceled();
|
||||
if (method.isConstructor()) continue;
|
||||
PsiMethod[] supers = method.findSuperMethods();
|
||||
if (supers.length > 0) continue;
|
||||
@@ -143,4 +142,4 @@ public class DefaultSymbolNavigationContributor implements ChooseByNameContribut
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user