public boolean equals()

in oas-validator/oas-validator-compatibility/src/main/java/org/apache/servicecomb/toolkit/oasv/compatibility/validators/schema/TypeFormat.java [40:46]


  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    TypeFormat that = (TypeFormat) o;
    return Objects.equals(type, that.type) &&
      Objects.equals(format, that.format);
  }