Skip to content

Commit

Permalink
Fixed verification errors
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbakker committed Jun 26, 2024
1 parent 328e0bb commit f8168b5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public DgsComponentIndex getDgsComponentIndex() {
return true;
});

StubIndexKey<String, KtAnnotationEntry> key = KotlinAnnotationsIndex.getInstance().getKey();
StubIndexKey<String, KtAnnotationEntry> key = KotlinAnnotationsIndex.Helper.getIndexKey();
List<String> list = new ArrayList<>();
stubIndex.processAllKeys(key, project, e -> {
ProgressManager.checkCanceled();
Expand All @@ -137,7 +137,7 @@ public DgsComponentIndex getDgsComponentIndex() {
}
}

StubIndexKey<String, KtClassOrObject> superClassIndexKey = KotlinSuperClassIndex.getInstance().getKey();
StubIndexKey<String, KtClassOrObject> superClassIndexKey = KotlinSuperClassIndex.Helper.getIndexKey();
stubIndex.processElements(superClassIndexKey, "DgsCustomContextBuilder", project, GlobalSearchScope.projectScope(project), KtClassOrObject.class, clazz -> {
dgsComponentIndex.getCustomContexts().add(new DgsCustomContext(clazz.getName(), clazz, clazz.getContainingFile()));
return true;
Expand Down

0 comments on commit f8168b5

Please sign in to comment.