in sarif/src/main/java/com/jetbrains/qodana/sarif/model/CodeFlow.java [145:155]
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof CodeFlow)) {
return false;
}
CodeFlow rhs = ((CodeFlow) other);
//noinspection ConstantValue,EqualsReplaceableByObjectsCall,StringEquality,NumberEquality
return ((((this.message == rhs.message) || ((this.message != null) && this.message.equals(rhs.message))) && ((this.threadFlows == rhs.threadFlows) || ((this.threadFlows != null) && this.threadFlows.equals(rhs.threadFlows)))) && ((this.properties == rhs.properties) || ((this.properties != null) && this.properties.equals(rhs.properties))));
}