From 80622803b245c63be5a9cfc21fa53171f8372edf Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 20 Jun 2015 17:01:03 +0200 Subject: [PATCH] Fix error in HTML syntax in Javadoc --- .../org/springframework/core/annotation/AnnotationUtils.java | 3 ++- 1 file changed, 2 insertions(+), 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 3acb3de2d2..19ca446dfd 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 @@ -215,6 +215,7 @@ public abstract class AnnotationUtils { * resolvable (e.g. because nested Class values in annotation attributes * failed to resolve at runtime) * @since 4.0.8 + * @see AnnotatedElement#getAnnotations() */ public static Annotation[] getAnnotations(AnnotatedElement annotatedElement) { try { @@ -227,7 +228,7 @@ public abstract class AnnotationUtils { } /** - * Get all {@link Annotation Annotations} that are presentpresent on the * supplied {@link Method}. *

Correctly handles bridge {@link Method Methods} generated by the compiler. *

Meta-annotations will not be searched.