From 9b7fd8be4d20520f12a2614057629884d2d8a5f4 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Thu, 23 Apr 2015 01:18:51 +0200 Subject: [PATCH] Polish Javadoc for AnnotationUtils --- .../core/annotation/AnnotationUtils.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 9db91d5ff1..9cc25cd357 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 @@ -663,7 +663,7 @@ public abstract class AnnotationUtils { * However, the {@code Map} signature has been preserved for binary compatibility. * @param annotation the annotation to retrieve the attributes for * @param classValuesAsString whether to turn Class references into Strings (for - * compatibility with {@link org.springframework.core.type.AnnotationMetadata} + * compatibility with {@link org.springframework.core.type.AnnotationMetadata}) * or to preserve them as Class references * @return the Map of annotation attributes, with attribute names as keys and * corresponding attribute values as values; never {@code null} @@ -680,11 +680,11 @@ public abstract class AnnotationUtils { * the reflection-based {@link org.springframework.core.type.StandardAnnotationMetadata}. * @param annotation the annotation to retrieve the attributes for * @param classValuesAsString whether to convert Class references into Strings (for - * compatibility with {@link org.springframework.core.type.AnnotationMetadata} + * compatibility with {@link org.springframework.core.type.AnnotationMetadata}) * or to preserve them as Class references * @param nestedAnnotationsAsMap whether to turn nested Annotation instances into * {@link AnnotationAttributes} maps (for compatibility with - * {@link org.springframework.core.type.AnnotationMetadata} or to preserve them as + * {@link org.springframework.core.type.AnnotationMetadata}) or to preserve them as * Annotation instances * @return the annotation attributes (a specialized Map) with attribute names as keys * and corresponding attribute values as values; never {@code null} @@ -714,11 +714,11 @@ public abstract class AnnotationUtils { * Adapt the given value according to the given class and nested annotation settings. * @param value the annotation attribute value * @param classValuesAsString whether to turn Class references into Strings (for - * compatibility with {@link org.springframework.core.type.AnnotationMetadata} + * compatibility with {@link org.springframework.core.type.AnnotationMetadata}) * or to preserve them as Class references * @param nestedAnnotationsAsMap whether to turn nested Annotation instances into * {@link AnnotationAttributes} maps (for compatibility with - * {@link org.springframework.core.type.AnnotationMetadata} or to preserve them as + * {@link org.springframework.core.type.AnnotationMetadata}) or to preserve them as * Annotation instances * @return the adapted value, or the original value if no adaptation is needed */