diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-03-17 22:03:08 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-03-17 22:03:08 +0000 |
commit | 1490ff5472f84062ff4c08c27fdebe1c1fb91288 (patch) | |
tree | e035c61473b6ad0bf048ea48df38b623a1fdf509 | |
parent | 94e19dce41512e09c3a40d93bbe9f862e75fa74c (diff) | |
download | prosody-1490ff5472f84062ff4c08c27fdebe1c1fb91288.tar.gz prosody-1490ff5472f84062ff4c08c27fdebe1c1fb91288.zip |
util.async: Remove redundant line committed by mistake (Zash, luacheck)
-rw-r--r-- | util/async.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/util/async.lua b/util/async.lua index 9189e6d1..a07226de 100644 --- a/util/async.lua +++ b/util/async.lua @@ -30,7 +30,6 @@ local function runner_continue(thread) end local error_handler = runner.watchers.error; if error_handler then error_handler(runner, debug.traceback(thread, err)); end - local ready_handler = runner.watchers.ready; runner.state, runner.thread = "ready", nil; return runner:run(); elseif state == "ready" then |