Minor: remove commented code

This commit is contained in:
Nikolay Krasko
2015-07-21 15:21:44 +03:00
parent 0ca5cc63e0
commit 7b85f88dfd
@@ -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>();
}
});