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
This commit is contained in:
Ryan Gustafson
2008-09-17 03:08:14 +00:00
parent 4baa8866be
commit 93b9f18764

View File

@ -88,6 +88,10 @@ public class PropertyDescriptorWrapper<T> implements PropertyDescriptor<T> {
return propertyDescriptor.valueFrom(propertyString);
}
public Map<String, String> attributeValuesById() {
return propertyDescriptor.attributeValuesById();
}
@Override
public boolean equals(Object obj) {
if (obj instanceof PropertyDescriptorWrapper) {
@ -105,9 +109,4 @@ public class PropertyDescriptorWrapper<T> implements PropertyDescriptor<T> {
public String toString() {
return "wrapped:" + propertyDescriptor.toString();
}
@Override
public Map<String, String> attributeValuesById() {
return propertyDescriptor.attributeValuesById();
}
}