diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:38:29 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:38:29 +0100 |
commit | fd58c2c49c595cfe9da2e46048656a0e3b29bd80 (patch) | |
tree | 55d8d27ed8de71a5f7aa3ffb554864647f7a3960 | |
parent | 0daf5ba8554c3d07724ac97b00bc62bb14e79828 (diff) | |
download | prosody-fd58c2c49c595cfe9da2e46048656a0e3b29bd80.tar.gz prosody-fd58c2c49c595cfe9da2e46048656a0e3b29bd80.zip |
util.dataforms: Remove unused import of pairs() (thanks luacheck)
-rw-r--r-- | util/dataforms.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dataforms.lua b/util/dataforms.lua index b2988ae7..5f246ee8 100644 --- a/util/dataforms.lua +++ b/util/dataforms.lua @@ -7,7 +7,7 @@ -- local setmetatable = setmetatable; -local pairs, ipairs = pairs, ipairs; +local ipairs = ipairs; local tostring, type, next = tostring, type, next; local t_concat = table.concat; local st = require "util.stanza"; |