in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/RepresentationMapImpl.java [85:99]
public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
if (this == o) {
return true;
}
if (!(o instanceof RepresentationMap)) {
return false;
}
if (!super.deepEquals(o, exclusions)) {
return false;
}
RepresentationMap that = (RepresentationMapImpl) o;
return Objects.equals(getSource(), that.getSource())
&& Objects.equals(getTarget(), that.getTarget())
&& Objects.equals(getRepresentationMappings(), that.getRepresentationMappings());
}