From 47dde91763ab09d4e9f82dcd22fe3e2127c0f08d Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Tue, 21 Oct 2014 12:16:51 +0200 Subject: [PATCH] Consistent use of logIntrospectionFailure Issue: SPR-12325 --- .../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 80a6d52cd6..a66c77cf1c 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 @@ -355,7 +355,7 @@ public abstract class AnnotationUtils { } catch (Exception ex) { // Assuming nested Class values not resolvable within annotation attributes... - // We're probably hitting a non-present optional arrangement - let's back out. + logIntrospectionFailure(clazz, ex); return null; }