util.promise: Remove debug print and assert

This commit is contained in:
Matthew Wild 2018-10-25 14:16:14 +01:00
parent e12412bc08
commit 5d8613b3c1

View file

@ -51,7 +51,6 @@ local function new_resolve_functions(p)
if resolved then return; end
resolved = true;
if is_promise(e) then
print ("WOAH") assert(false)
e:next(new_resolve_functions(p));
elseif promise_settle(p, "rejected", next_rejected, p._pending_on_rejected, e) then
p.reason = e;