Missing @Override
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1034821 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd5f8ea307
commit
4fc28f2d3b
|
@ -50,6 +50,7 @@ public class AnnotationUtils {
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
protected String getShortClassName(java.lang.Class<?> cls) {
|
protected String getShortClassName(java.lang.Class<?> cls) {
|
||||||
Class<? extends Annotation> annotationType = null;
|
Class<? extends Annotation> annotationType = null;
|
||||||
for (Class<?> iface : ClassUtils.getAllInterfaces(cls)) {
|
for (Class<?> iface : ClassUtils.getAllInterfaces(cls)) {
|
||||||
|
@ -68,6 +69,7 @@ public class AnnotationUtils {
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
@Override
|
||||||
protected void appendDetail(StringBuffer buffer, String fieldName, Object value) {
|
protected void appendDetail(StringBuffer buffer, String fieldName, Object value) {
|
||||||
if (value instanceof Annotation) {
|
if (value instanceof Annotation) {
|
||||||
value = AnnotationUtils.toString((Annotation) value);
|
value = AnnotationUtils.toString((Annotation) value);
|
||||||
|
|
Loading…
Reference in New Issue