public boolean equals()

in sarif/src/main/java/com/jetbrains/qodana/sarif/model/ExternalPropertyFileReference.java [155:165]


    public boolean equals(Object other) {
        if (other == this) {
            return true;
        }
        if (!(other instanceof ExternalPropertyFileReference)) {
            return false;
        }
        ExternalPropertyFileReference rhs = ((ExternalPropertyFileReference) other);
        //noinspection ConstantValue,EqualsReplaceableByObjectsCall,StringEquality,NumberEquality
        return (((((this.guid == rhs.guid) || ((this.guid != null) && this.guid.equals(rhs.guid))) && ((this.location == rhs.location) || ((this.location != null) && this.location.equals(rhs.location)))) && ((this.properties == rhs.properties) || ((this.properties != null) && this.properties.equals(rhs.properties)))) && ((this.itemCount == rhs.itemCount) || ((this.itemCount != null) && this.itemCount.equals(rhs.itemCount))));
    }