Minor - remove override of equals() in PropertyMapComparator

- The Comparator map defines equals(Object) but this is obviously already implemented by the Object superclass
This commit is contained in:
ljacqu 2016-01-30 15:32:34 +01:00
parent a101ce915b
commit a40b06344a

View File

@ -31,9 +31,4 @@ final class PropertyMapComparator implements Comparator<Property> {
return Node.compare(parent, p1.getPath(), p2.getPath());
}
@Override
public boolean equals(Object obj) {
return this == obj;
}
}