Changeset

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
parents 7474:701989ab904f
children 7476:42d8955be784
files net/adns.lua
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
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