public boolean equals()

in src/main/java/org/apache/rocketmq/exporter/model/metrics/DLQTopicOffsetMetric.java [65:74]


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

        return other.clusterName.equals(clusterName) && other.brokerName.equals(brokerName) &&
                other.group.equals(group);

    }