diff options
author | Anton Shestakov <av6@dwimlabs.net> | 2016-07-09 00:58:16 +0800 |
---|---|---|
committer | Anton Shestakov <av6@dwimlabs.net> | 2016-07-09 00:58:16 +0800 |
commit | 45af943ce3ac3fac7d9f8f8e68b0f0f28b31f6bd (patch) | |
tree | c160d0244e8d3756f5aca1eda02f0fd406107147 /net/adns.lua | |
parent | 2a2ade5de5dcdce49541f759088bac76e5972af3 (diff) | |
download | prosody-45af943ce3ac3fac7d9f8f8e68b0f0f28b31f6bd.tar.gz prosody-45af943ce3ac3fac7d9f8f8e68b0f0f28b31f6bd.zip |
net.adns: remove unused local variables t_insert and t_remove [luacheck]
Diffstat (limited to 'net/adns.lua')
-rw-r--r-- | net/adns.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/adns.lua b/net/adns.lua index d3da2065..0b7247ed 100644 --- a/net/adns.lua +++ b/net/adns.lua @@ -11,7 +11,6 @@ local dns = require "net.dns"; 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 |