From d40d2ffe5e389e9c66c9482858286f2abac0c5cf Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 29 Mar 2016 18:04:26 +0200 Subject: [PATCH] Polishing --- .../org/springframework/core/annotation/AnnotationUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 51f6189e248..4bd6f63bf2c 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; } }