Diff

net/adns.lua @ 7475:ee878fa78b8b

net.adns: remove unused local variables t_insert and t_remove [luacheck]
author Anton Shestakov <av6@dwimlabs.net>
date Sat, 09 Jul 2016 00:58:16 +0800
parent 6780:647adfd8f738
child 8266:9a97dd174ec9
line wrap: on
line diff
--- 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