Skip to content

Commit

Permalink
Fix a compilation error caused by two of my previous commits overlapping
Browse files Browse the repository at this point in the history
Signed-off-by: David Thompson <davthomp@redhat.com>
  • Loading branch information
datho7561 authored and mickaelistria committed Apr 12, 2024
1 parent ef64934 commit d064f7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public JavacPackageBinding(PackageSymbol packge, JavacBindingResolver resolver)
@Override
public IAnnotationBinding[] getAnnotations() {
return this.packageSymbol.getAnnotationMirrors().stream()
.map(am -> new JavacAnnotationBinding(am, resolver))
.map(am -> new JavacAnnotationBinding(am, resolver, this))
.toArray(IAnnotationBinding[]::new);
}

Expand Down

0 comments on commit d064f7d

Please sign in to comment.