public boolean equals()

in asterix-bad/src/main/java/org/apache/asterix/bad/metadata/Broker.java [58:70]


    public boolean equals(Object other) {
        if (this == other) {
            return true;
        }
        if (!(other instanceof Broker)) {
            return false;
        }
        Broker otherDataset = (Broker) other;
        if (!otherDataset.brokerName.equals(brokerName)) {
            return false;
        }
        return true;
    }