in dubbo-admin-server/src/main/java/org/apache/dubbo/admin/model/domain/TypeDefinition.java [147:156]
public boolean equals(Object o) {
if (this == o) {
return true;
} else if (!(o instanceof TypeDefinition)) {
return false;
} else {
TypeDefinition that = (TypeDefinition) o;
return Objects.equals(this.getId(), that.getId()) && Objects.equals(this.getType(), that.getType()) && Objects.equals(this.getItems(), that.getItems()) && Objects.equals(this.getEnums(), that.getEnums()) && Objects.equals(this.get$ref(), that.get$ref()) && Objects.equals(this.getProperties(), that.getProperties());
}
}