in oas-validator/oas-validator-core/src/main/java/org/apache/servicecomb/toolkit/oasv/diffvalidation/api/OasDiffViolation.java [76:83]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
OasDiffViolation that = (OasDiffViolation) o;
return Objects.equals(leftLocation, that.leftLocation) &&
Objects.equals(rightLocation, that.rightLocation) &&
Objects.equals(error, that.error);
}