From 93b9f18764ed63d5b46bc7203deb43853ae38256 Mon Sep 17 00:00:00 2001 From: Ryan Gustafson Date: Wed, 17 Sep 2008 03:08:14 +0000 Subject: [PATCH] Remove incorrect @Override annotation, move method above java.lang.Object overrides instead of at end of file. git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@6487 51baf565-9d33-0410-a72c-fc3788e3496d --- .../lang/rule/properties/PropertyDescriptorWrapper.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pmd/src/net/sourceforge/pmd/lang/rule/properties/PropertyDescriptorWrapper.java b/pmd/src/net/sourceforge/pmd/lang/rule/properties/PropertyDescriptorWrapper.java index 1a8c773cd2..d766793ae1 100644 --- a/pmd/src/net/sourceforge/pmd/lang/rule/properties/PropertyDescriptorWrapper.java +++ b/pmd/src/net/sourceforge/pmd/lang/rule/properties/PropertyDescriptorWrapper.java @@ -88,6 +88,10 @@ public class PropertyDescriptorWrapper implements PropertyDescriptor { return propertyDescriptor.valueFrom(propertyString); } + public Map attributeValuesById() { + return propertyDescriptor.attributeValuesById(); + } + @Override public boolean equals(Object obj) { if (obj instanceof PropertyDescriptorWrapper) { @@ -105,9 +109,4 @@ public class PropertyDescriptorWrapper implements PropertyDescriptor { public String toString() { return "wrapped:" + propertyDescriptor.toString(); } - - @Override - public Map attributeValuesById() { - return propertyDescriptor.attributeValuesById(); - } }