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}
|
||||
*/
|
||||
@Override
|
||||
protected String getShortClassName(java.lang.Class<?> cls) {
|
||||
Class<? extends Annotation> annotationType = null;
|
||||
for (Class<?> iface : ClassUtils.getAllInterfaces(cls)) {
|
||||
|
@ -68,6 +69,7 @@ public class AnnotationUtils {
|
|||
/**
|
||||
* {@inheritDoc}
|
||||
*/
|
||||
@Override
|
||||
protected void appendDetail(StringBuffer buffer, String fieldName, Object value) {
|
||||
if (value instanceof Annotation) {
|
||||
value = AnnotationUtils.toString((Annotation) value);
|
||||
|
|
Loading…
Reference in New Issue