Skip to content

Commit

Permalink
Update IndexWrapper to add new API method
Browse files Browse the repository at this point in the history
  • Loading branch information
n1hility authored Jul 16, 2020
1 parent 681ed9f commit 4648dcf
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,11 @@ public Collection<ClassInfo> getAllKnownImplementors(DotName interfaceName) {
public Collection<AnnotationInstance> getAnnotations(DotName annotationName) {
return index.getAnnotations(annotationName);
}

@Override
public Collection<AnnotationInstance> getAnnotationsWithRepeatable(DotName annotationName, IndexView index) {
return index.getAnnotationsWithRepeatable(annotationName, index);
}

private void getAllKnownSubClasses(DotName className, Set<ClassInfo> allKnown, Set<DotName> processedClasses) {
final Set<DotName> subClassesToProcess = new HashSet<DotName>();
Expand Down

0 comments on commit 4648dcf

Please sign in to comment.