Removed unnecessary checks.

This commit is contained in:
cheatfate 2018-05-30 07:55:35 +03:00
parent c43d572ad6
commit 0f7f616133
1 changed files with 5 additions and 6 deletions

View File

@ -188,12 +188,11 @@ proc fail*[T](future: Future[T], error: ref Exception) =
future.callbacks.call()
proc clearCallbacks(future: FutureBase) =
if len(future.callbacks) > 0:
# ZAH: This could have been a single call to `setLen`
var count = len(future.callbacks)
while count > 0:
discard future.callbacks.popFirst()
dec(count)
# ZAH: This could have been a single call to `setLen`
var count = len(future.callbacks)
while count > 0:
discard future.callbacks.popFirst()
dec(count)
proc addCallback*(future: FutureBase, cb: CallbackFunc, udata: pointer = nil) =
## Adds the callbacks proc to be called when the future completes.