mod_c2s: Remove unused locals [luacheck]
authorKim Alvefur <zash@zash.se>
Sat, 01 Apr 2017 22:40:09 +0200
changeset 8047 e38e3300b955
parent 8046 e7561d56008d
child 8049 1bf47706aefb
mod_c2s: Remove unused locals [luacheck]
plugins/mod_c2s.lua
--- a/plugins/mod_c2s.lua	Sat Apr 01 22:38:02 2017 +0200
+++ b/plugins/mod_c2s.lua	Sat Apr 01 22:40:09 2017 +0200
@@ -17,8 +17,7 @@
 local uuid_generate = require "util.uuid".generate;
 local runner = require "util.async".runner;
 
-local xpcall, tostring, type = xpcall, tostring, type;
-local t_insert, t_remove = table.insert, table.remove;
+local tostring, type = tostring, type;
 
 local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";