Fix Checkstyle violations

See gh-23767
This commit is contained in:
Sam Brannen 2019-10-22 12:40:38 +02:00
parent ad543dbee3
commit 2146bc816a
1 changed files with 2 additions and 2 deletions

View File

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