in src/main/java/com/epam/eco/commons/avro/modification/SetSchemaProperties.java [84:95]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || obj.getClass() != this.getClass()) {
return false;
}
SetSchemaProperties that = (SetSchemaProperties)obj;
return
Objects.equals(this.properties, that.properties);
}