public boolean equals()

in sarif/src/main/java/com/jetbrains/qodana/sarif/model/Graph.java [157:167]


    public boolean equals(Object other) {
        if (other == this) {
            return true;
        }
        if (!(other instanceof Graph)) {
            return false;
        }
        Graph rhs = ((Graph) other);
        //noinspection ConstantValue,EqualsReplaceableByObjectsCall,StringEquality,NumberEquality
        return (((((this.edges == rhs.edges) || ((this.edges != null) && this.edges.equals(rhs.edges))) && ((this.description == rhs.description) || ((this.description != null) && this.description.equals(rhs.description)))) && ((this.nodes == rhs.nodes) || ((this.nodes != null) && this.nodes.equals(rhs.nodes)))) && ((this.properties == rhs.properties) || ((this.properties != null) && this.properties.equals(rhs.properties))));
    }