in src/main/java/com/epam/digital/data/platform/bphistory/model/HistoryTask.java [131:149]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
HistoryTask that = (HistoryTask) o;
return Objects.equals(activityInstanceId, that.activityInstanceId)
&& Objects.equals(taskDefinitionKey, that.taskDefinitionKey)
&& Objects.equals(taskDefinitionName, that.taskDefinitionName)
&& Objects.equals(processInstanceId, that.processInstanceId)
&& Objects.equals(processDefinitionId, that.processDefinitionId)
&& Objects.equals(processDefinitionKey, that.processDefinitionKey)
&& Objects.equals(processDefinitionName, that.processDefinitionName)
&& Objects.equals(rootProcessInstanceId, that.rootProcessInstanceId)
&& Objects.equals(startTime, that.startTime) && Objects.equals(endTime,
that.endTime) && Objects.equals(assignee, that.assignee);
}