Polish inline documentation in AnnotatedElementUtils

master
Sam Brannen 10 years ago
parent 0ddcbce90a
commit b723dcebba
  1. 4
      spring-core/src/main/java/org/springframework/core/annotation/AnnotatedElementUtils.java

@ -243,7 +243,7 @@ public class AnnotatedElementUtils {
if (visited.add(element)) { if (visited.add(element)) {
try { try {
// Local annotations: either directly declared or inherited. // Local annotations: declared or (declared + inherited).
Annotation[] annotations = Annotation[] annotations =
(searchClassHierarchy ? element.getDeclaredAnnotations() : element.getAnnotations()); (searchClassHierarchy ? element.getDeclaredAnnotations() : element.getAnnotations());
@ -263,7 +263,7 @@ public class AnnotatedElementUtils {
} }
} }
// Search in meta annotations on location annotations // Search in meta annotations on local annotations
for (Annotation annotation : annotations) { for (Annotation annotation : annotations) {
if (!AnnotationUtils.isInJavaLangAnnotationPackage(annotation)) { if (!AnnotationUtils.isInJavaLangAnnotationPackage(annotation)) {
T result = doProcess(annotation.annotationType(), annotationType, searchInterfaces, T result = doProcess(annotation.annotationType(), annotationType, searchInterfaces,

Loading…
Cancel
Save