in sarif/src/main/java/com/jetbrains/qodana/sarif/model/Notification.java [312:324]
public int hashCode() {
int result = 1;
result = ((result * 31) + ((this.threadId == null) ? 0 : this.threadId.hashCode()));
result = ((result * 31) + ((this.exception == null) ? 0 : this.exception.hashCode()));
result = ((result * 31) + ((this.level == null) ? 0 : this.level.hashCode()));
result = ((result * 31) + ((this.associatedRule == null) ? 0 : this.associatedRule.hashCode()));
result = ((result * 31) + ((this.timeUtc == null) ? 0 : this.timeUtc.hashCode()));
result = ((result * 31) + ((this.locations == null) ? 0 : this.locations.hashCode()));
result = ((result * 31) + ((this.descriptor == null) ? 0 : this.descriptor.hashCode()));
result = ((result * 31) + ((this.message == null) ? 0 : this.message.hashCode()));
result = ((result * 31) + ((this.properties == null) ? 0 : this.properties.hashCode()));
return result;
}