in persistence-commons/persistence-commons-api/src/main/java/org/kie/kogito/persistence/api/schema/SchemaDescriptor.java [59:71]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SchemaDescriptor that = (SchemaDescriptor) o;
return Objects.equals(name, that.name) &&
Objects.equals(schemaContent, that.schemaContent) &&
Objects.equals(entityIndexDescriptors, that.entityIndexDescriptors) &&
Objects.equals(processDescriptor, that.processDescriptor);
}