in serverless-workflow-examples/serverless-workflow-functions-events-quarkus/src/main/java/org/acme/sw/onboarding/model/SymptomSpecialty.java [48:58]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SymptomSpecialty that = (SymptomSpecialty) o;
return Objects.equals(symptoms, that.symptoms) &&
Objects.equals(specialty, that.specialty);
}