net.adns: remove unused local variables t_insert and t_remove [luacheck]
authorAnton Shestakov <av6@dwimlabs.net>
Sat, 09 Jul 2016 00:58:16 +0800
changeset 7478 ee878fa78b8b
parent 7477 701989ab904f
child 7479 42d8955be784
net.adns: remove unused local variables t_insert and t_remove [luacheck]
net/adns.lua
--- a/net/adns.lua	Sat Jul 09 00:57:17 2016 +0800
+++ b/net/adns.lua	Sat Jul 09 00:58:16 2016 +0800
@@ -11,7 +11,6 @@
 
 local log = require "util.logger".init("adns");
 
-local t_insert, t_remove = table.insert, table.remove;
 local coroutine, tostring, pcall = coroutine, tostring, pcall;
 
 local function dummy_send(sock, data, i, j) return (j-i)+1; end