in client/src/main/java/org/apache/rocketmq/schema/registry/client/CachedSchemaRegistryClient.java [448:460]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SubjectAndSchema that = (SubjectAndSchema) o;
return Objects.equals(subject, that.subject)
&& Objects.equals(tenant, that.tenant)
&& Objects.equals(cluster, that.cluster)
&& Objects.equals(schema, that.schema);
}