Browse Source

Revert unintentional change in AnnotationUtils

pull/783/merge
Sam Brannen 11 years ago
parent
commit
ececf32c05
  1. 7
      spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java

7
spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java

@ -364,11 +364,12 @@ public abstract class AnnotationUtils { @@ -364,11 +364,12 @@ public abstract class AnnotationUtils {
result = searchOnInterfaces(method, annotationType, clazz.getInterfaces());
}
}
}
if (result != null) {
findAnnotationCache.put(cacheKey, result);
if (result != null) {
findAnnotationCache.put(cacheKey, result);
}
}
return result;
}

Loading…
Cancel
Save