mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 14:09:25 +00:00
Polish inline documentation in AnnotatedElementUtils
This commit is contained in:
+2
-2
@@ -243,7 +243,7 @@ public class AnnotatedElementUtils {
|
||||
if (visited.add(element)) {
|
||||
try {
|
||||
|
||||
// Local annotations: either directly declared or inherited.
|
||||
// Local annotations: declared or (declared + inherited).
|
||||
Annotation[] annotations =
|
||||
(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) {
|
||||
if (!AnnotationUtils.isInJavaLangAnnotationPackage(annotation)) {
|
||||
T result = doProcess(annotation.annotationType(), annotationType, searchInterfaces,
|
||||
|
||||
Reference in New Issue
Block a user