Changeset

8044:e38e3300b955

mod_c2s: Remove unused locals [luacheck]
author Kim Alvefur <zash@zash.se>
date Sat, 01 Apr 2017 22:40:09 +0200
parents 8043:e7561d56008d
children 8046:1bf47706aefb
files plugins/mod_c2s.lua
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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";