Software /
code /
prosody
Changeset
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 |
parents | 6667:e4338c0f739a |
children | 6669:7da8b6bc0966 |
files | util/dataforms.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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";