diff --git a/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java b/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java index 51f6189e24..4bd6f63bf2 100644 --- a/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java +++ b/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java @@ -1738,7 +1738,7 @@ public abstract class AnnotationUtils { try { Annotation repeatable = getAnnotation(annotationType, REPEATABLE_CLASS_NAME); if (repeatable != null) { - Object value = AnnotationUtils.getValue(repeatable); + Object value = getValue(repeatable); return (Class) value; } }