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