Add linter ineffassign (#550)

This commit is contained in:
Lukas
2021-11-27 13:17:03 +01:00
committed by GitHub
parent 34a17f8219
commit eb134a2e27
2 changed files with 1 additions and 1 deletions

View File

@@ -356,7 +356,6 @@ func (q *fifo) updateDepStatusInQueue(taskID string, status string) {
}
}
next = nil
for e := q.waitingOnDeps.Front(); e != nil; e = next {
next = e.Next()
waiting, ok := e.Value.(*Task)