in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/ConstraintImpl.java [42:55]
public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
if (this == o) {
return true;
}
if (!(o instanceof ConstraintImpl)) {
return false;
}
if (!super.deepEquals(o, exclusions)) {
return false;
}
ConstraintImpl that = (ConstraintImpl) o;
return Objects.equals(getConstrainedArtefacts(), that.getConstrainedArtefacts())
&& getConstraintRoleType() == that.getConstraintRoleType();
}