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 | 526f5c061e65d09242799f2606c4c2e2db1d8216 (patch) | |
tree | 55d8d27ed8de71a5f7aa3ffb554864647f7a3960 /util/dataforms.lua | |
parent | 5f6cc5eaeaae252477858c83944ec97cf2223cfa (diff) | |
download | prosody-526f5c061e65d09242799f2606c4c2e2db1d8216.tar.gz prosody-526f5c061e65d09242799f2606c4c2e2db1d8216.zip |
util.dataforms: Remove unused import of pairs() (thanks luacheck)
Diffstat (limited to 'util/dataforms.lua')
-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"; |