You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem with your promises implementation....for the latest PromiseKit
for a Promise{Void}, you are generating:
deferred.fulfill( )
when you should generate
deferred.fulfill( () )
Note the extra parens as the void arg
Problem with your promises implementation....for the latest PromiseKit
for a Promise{Void}, you are generating:
deferred.fulfill( )
when you should generate
deferred.fulfill( () )
Note the extra parens as the void arg