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