# HG changeset patch
# User Anton Shestakov <av6@dwimlabs.net>
# Date 1467997096 -28800
# Node ID ee878fa78b8b6a98d33031de1e99f27492404430
# Parent  701989ab904f3189863acad0ed660cbbcd000ee8
net.adns: remove unused local variables t_insert and t_remove [luacheck]

diff -r 701989ab904f -r ee878fa78b8b 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