public boolean equals()

in common/src/main/java/org/apache/cassandra/sidecar/common/NodeSettings.java [94:108]


    public boolean equals(Object other)
    {
        if (this == other)
        {
            return true;
        }
        if (other == null || this.getClass() != other.getClass())
        {
            return false;
        }
        NodeSettings that = (NodeSettings) other;
        return Objects.equals(this.releaseVersion, that.releaseVersion)
            && Objects.equals(this.partitioner,    that.partitioner)
            && Objects.equals(this.sidecar,        that.sidecar);
    }