Skip to content

Commit

Permalink
Bump jandex from 2.1.3.Final to 2.2.0.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
n1hility authored and gsmet committed Jul 17, 2020
1 parent 2f415de commit 7900caa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bom/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<properties>
<aesh.version>2.5</aesh.version>
<jandex.version>2.1.3.Final</jandex.version>
<jandex.version>2.2.0.Final</jandex.version>
<resteasy.version>4.5.5.Final</resteasy.version>
<opentracing.version>0.31.0</opentracing.version>
<opentracing-jaxrs.version>0.4.1</opentracing-jaxrs.version>
Expand Down
2 changes: 1 addition & 1 deletion independent-projects/arc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<!-- Versions -->
<version.cdi>2.0.2</version.cdi>
<version.jta>1.3.3</version.jta>
<version.jandex>2.1.3.Final</version.jandex>
<version.jandex>2.2.0.Final</version.jandex>
<version.junit5>5.6.1</version.junit5>
<version.maven>3.6.3</version.maven>
<version.assertj>3.16.1</version.assertj>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ public Collection<AnnotationInstance> getAnnotations(DotName annotationName) {
return index.getAnnotations(annotationName);
}

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

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

0 comments on commit 7900caa

Please sign in to comment.