Software /
code /
prosody
Diff
util/dataforms.lua @ 6668:f6f39c2f1b1f
util.dataforms: Remove unused import of pairs() (thanks luacheck)
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 06 May 2015 19:38:29 +0100 |
parent | 6468:3728c30da4e3 |
child | 6672:d6a60e74f773 |
line wrap: on
line diff
--- a/util/dataforms.lua Wed May 06 19:35:35 2015 +0100 +++ b/util/dataforms.lua Wed May 06 19:38:29 2015 +0100 @@ -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";