in sarif/src/main/java/com/jetbrains/qodana/sarif/model/ReportingDescriptorReference.java [185:195]
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof ReportingDescriptorReference)) {
return false;
}
ReportingDescriptorReference rhs = ((ReportingDescriptorReference) other);
//noinspection ConstantValue,EqualsReplaceableByObjectsCall,StringEquality,NumberEquality
return ((((((this.index == rhs.index) || ((this.index != null) && this.index.equals(rhs.index))) && ((this.guid == rhs.guid) || ((this.guid != null) && this.guid.equals(rhs.guid)))) && ((this.toolComponent == rhs.toolComponent) || ((this.toolComponent != null) && this.toolComponent.equals(rhs.toolComponent)))) && ((this.id == rhs.id) || ((this.id != null) && this.id.equals(rhs.id)))) && ((this.properties == rhs.properties) || ((this.properties != null) && this.properties.equals(rhs.properties))));
}