mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: remove unused variable unpack [luacheck]
This commit is contained in:
parent
6aadf43375
commit
6d713ae288
1 changed files with 2 additions and 2 deletions
|
@ -22,8 +22,8 @@ local is_windows = (_ and windows) or os.getenv("WINDIR");
|
|||
local coroutine, io, math, string, table =
|
||||
coroutine, io, math, string, table;
|
||||
|
||||
local ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type, unpack=
|
||||
ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type, table.unpack or unpack;
|
||||
local ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type =
|
||||
ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type;
|
||||
|
||||
local ztact = { -- public domain 20080404 lua@ztact.com
|
||||
get = function(parent, ...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue