util.promise: Remove line that was supposed to be removed in eb9814372c54

This commit is contained in:
Matthew Wild 2022-10-07 17:45:23 +01:00
parent aed0c1c5ab
commit a79238fb37

View file

@ -58,7 +58,6 @@ end
local function new_resolve_functions(p)
local function _resolve(v)
resolved = true;
if is_promise(v) then
v:next(new_resolve_functions(p));
elseif promise_settle(p, "fulfilled", next_fulfilled, p._pending_on_fulfilled, v) then