Filter repeatable annotations in AnnotationTypeMappings
Prior to this commit, AnnotationTypeMappings did not filter repeatable annotations with the supplied annotation filter. Closes gh-25483
This commit is contained in:
committed by
Sam Brannen
parent
b841e8560c
commit
83a95832e6
@@ -89,7 +89,7 @@ final class AnnotationTypeMappings {
|
||||
Annotation[] repeatedAnnotations = this.repeatableContainers.findRepeatedAnnotations(metaAnnotation);
|
||||
if (repeatedAnnotations != null) {
|
||||
for (Annotation repeatedAnnotation : repeatedAnnotations) {
|
||||
if (!isMappable(source, metaAnnotation)) {
|
||||
if (!isMappable(source, repeatedAnnotation)) {
|
||||
continue;
|
||||
}
|
||||
addIfPossible(queue, source, repeatedAnnotation);
|
||||
|
||||
Reference in New Issue
Block a user