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