in core/src/main/java/com/spotify/missinglink/datamodel/ArrayTypeDescriptor.java [61:72]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ArrayTypeDescriptor that = (ArrayTypeDescriptor) o;
return subType.equals(that.subType) && dimensions == that.dimensions;
}