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