in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/GeoGridCodelistImpl.java [59:74]
public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
if (o == this) {
return true;
}
if (!(o instanceof GeoGridCodelist)) {
return false;
}
final var other = (GeoGridCodelist) o;
if (!super.deepEquals(o, exclusions)) {
return false;
}
if (!Objects.equals(gridDefinition, other.getGridDefinition())) {
return false;
}
return Objects.equals(items, other.getItems());
}