Minor: remove commented code
This commit is contained in:
+2
-12
@@ -108,18 +108,8 @@ public class KotlinAnnotatedElementsSearcher extends AnnotatedElementsSearcher {
|
||||
|
||||
return annotationEntries;
|
||||
}
|
||||
/*
|
||||
TODO getJetAnnotationCandidates works only with global search scope
|
||||
for (PsiElement element : ((LocalSearchScope)useScope).getScope()) {
|
||||
element.accept(new PsiRecursiveElementWalkingVisitor() {
|
||||
@Override
|
||||
public void visitElement(PsiElement element) {
|
||||
if (element instanceof JetAnnotationEntry) {
|
||||
result.add(element);
|
||||
}
|
||||
}
|
||||
});
|
||||
}*/
|
||||
|
||||
// TODO getJetAnnotationCandidates works only with global search scope
|
||||
return new ArrayList<PsiElement>();
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user