in commons/src/main/java/com/epam/eco/schemacatalog/domain/metadata/MetadataUpdateParams.java [67:79]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || obj.getClass() != getClass()) {
return false;
}
MetadataUpdateParams that = (MetadataUpdateParams)obj;
return
Objects.equals(this.key, that.key) &&
Objects.equals(this.doc, that.doc) &&
Objects.equals(this.attributes, that.attributes);
}