in store/src/main/java/com/epam/eco/schemacatalog/store/schema/kafka/SchemaValue.java [68:83]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
SchemaValue that = (SchemaValue)obj;
return
Objects.equals(this.subject, that.subject) &&
Objects.equals(this.version, that.version) &&
Objects.equals(this.id, that.id) &&
Objects.equals(this.schema, that.schema) &&
Objects.equals(this.deleted, that.deleted);
}