opendj-config/src/main/java/org/forgerock/opendj/config/PropertyDefinition.java
@@ -367,12 +367,8 @@ return true; } else if (o instanceof PropertyDefinition) { PropertyDefinition<?> other = (PropertyDefinition<?>) o; if (propertyName.equals(other.propertyName)) { if (theClass.equals(other.theClass)) { return true; } } return false; return propertyName.equals(other.propertyName) && theClass.equals(other.theClass); } else { return false; }