public boolean equals()

in src/main/java/org/apache/rocketmq/exporter/model/metrics/BrokerMetric.java [55:63]


    public boolean equals(Object obj) {
        if (!(obj instanceof BrokerMetric)) {
            return false;
        }
        BrokerMetric other = (BrokerMetric) obj;

        return other.clusterName.equals(clusterName) &&
                other.brokerIP.equals(brokerIP);
    }