Assignees optimizations #47

Merged
konrad merged 10 commits from enhancement/assignees-performance into master 2019-01-08 19:13:07 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 59cbff2354 - Show all commits

View File

@ -159,7 +159,7 @@ func (t *ListTask) updateTaskAssignees(assignees []*User) (err error) {
return nil
}
// Make a hashmap of the new assignees for easier comparision
// Make a hashmap of the new assignees for easier comparison
newAssignees := make(map[int64]*User, len(assignees))
for _, newAssignee := range assignees {
newAssignees[newAssignee.ID] = newAssignee