Browse Source

Polishing

pull/23422/head
Sam Brannen 6 years ago
parent
commit
82f301f42f
  1. 2
      spring-core/src/main/java/org/springframework/core/type/classreading/SimpleAnnotationMetadataReadingVisitor.java
  2. 3
      spring-core/src/main/java/org/springframework/core/type/classreading/SimpleMethodMetadataReadingVisitor.java

2
spring-core/src/main/java/org/springframework/core/type/classreading/SimpleAnnotationMetadataReadingVisitor.java

@ -35,7 +35,7 @@ import org.springframework.util.ClassUtils;
import org.springframework.util.StringUtils; import org.springframework.util.StringUtils;
/** /**
* ASM class visitor to create {@link SimpleAnnotationMetadata}. * ASM class visitor that creates {@link SimpleAnnotationMetadata}.
* *
* @author Phillip Webb * @author Phillip Webb
* @since 5.2 * @since 5.2

3
spring-core/src/main/java/org/springframework/core/type/classreading/SimpleMethodMetadataReadingVisitor.java

@ -26,11 +26,10 @@ import org.springframework.asm.SpringAsmInfo;
import org.springframework.asm.Type; import org.springframework.asm.Type;
import org.springframework.core.annotation.MergedAnnotation; import org.springframework.core.annotation.MergedAnnotation;
import org.springframework.core.annotation.MergedAnnotations; import org.springframework.core.annotation.MergedAnnotations;
import org.springframework.core.type.MethodMetadata;
import org.springframework.lang.Nullable; import org.springframework.lang.Nullable;
/** /**
* {@link MethodMetadata} returned from a {@link SimpleMetadataReader}. * ASM method visitor that creates {@link SimpleMethodMetadata}.
* *
* @author Phillip Webb * @author Phillip Webb
* @since 5.2 * @since 5.2

Loading…
Cancel
Save