Browse Source

Fix Checkstyle violations

See gh-23767
pull/23848/head
Sam Brannen 5 years ago
parent
commit
2146bc816a
  1. 4
      spring-core/src/main/java/org/springframework/core/annotation/TypeMappedAnnotation.java

4
spring-core/src/main/java/org/springframework/core/annotation/TypeMappedAnnotation.java

@ -441,8 +441,8 @@ final class TypeMappedAnnotation<A extends Annotation> extends AbstractMergedAnn
value = this.mapping.getMappedAnnotationValue(attributeIndex, forMirrorResolution); value = this.mapping.getMappedAnnotationValue(attributeIndex, forMirrorResolution);
} }
if (value == null) { if (value == null) {
Method attribute = mapping.getAttributes().get(attributeIndex); Method attribute = this.mapping.getAttributes().get(attributeIndex);
value = ReflectionUtils.invokeMethod(attribute, mapping.getAnnotation()); value = ReflectionUtils.invokeMethod(attribute, this.mapping.getAnnotation());
} }
return value; return value;
} }

Loading…
Cancel
Save