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