in sarif/src/main/java/com/jetbrains/qodana/sarif/model/StackFrame.java [187:197]
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof StackFrame)) {
return false;
}
StackFrame rhs = ((StackFrame) other);
//noinspection ConstantValue,EqualsReplaceableByObjectsCall,StringEquality,NumberEquality
return ((((((this.threadId == rhs.threadId) || ((this.threadId != null) && this.threadId.equals(rhs.threadId))) && ((this.location == rhs.location) || ((this.location != null) && this.location.equals(rhs.location)))) && ((this.parameters == rhs.parameters) || ((this.parameters != null) && this.parameters.equals(rhs.parameters)))) && ((this.properties == rhs.properties) || ((this.properties != null) && this.properties.equals(rhs.properties)))) && ((this.module == rhs.module) || ((this.module != null) && this.module.equals(rhs.module))));
}