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