public boolean equals()

in src/main/java/org/apache/rocketmq/dashboard/model/request/TopicConfigInfo.java [108:120]


    public boolean equals(Object o) {
        if (this == o)
            return true;
        if (o == null || getClass() != o.getClass())
            return false;
        TopicConfigInfo that = (TopicConfigInfo) o;
        return writeQueueNums == that.writeQueueNums &&
            readQueueNums == that.readQueueNums &&
            perm == that.perm &&
            order == that.order &&
            Objects.equal(topicName, that.topicName) &&
            Objects.equal(messageType, that.messageType);
    }