forked from phoedos/pmd
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:
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user