in src/main/java/com/epam/eco/commons/avro/modification/RenameSchema.java [70:82]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || obj.getClass() != this.getClass()) {
return false;
}
RenameSchema that = (RenameSchema)obj;
return
Objects.equals(this.name, that.name) &&
Objects.equals(this.namespace, that.namespace);
}