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:
Sebastian Bazley 2010-11-13 17:45:47 +00:00
parent dd5f8ea307
commit 4fc28f2d3b
1 changed files with 2 additions and 0 deletions

View File

@ -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 @@ protected String getShortClassName(java.lang.Class<?> cls) {
/**
* {@inheritDoc}
*/
@Override
protected void appendDetail(StringBuffer buffer, String fieldName, Object value) {
if (value instanceof Annotation) {
value = AnnotationUtils.toString((Annotation) value);