Software /
code /
prosody
Comparison
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 |
comparison
equal
deleted
inserted
replaced
6667:e4338c0f739a | 6668:f6f39c2f1b1f |
---|---|
5 -- This project is MIT/X11 licensed. Please see the | 5 -- This project is MIT/X11 licensed. Please see the |
6 -- COPYING file in the source package for more information. | 6 -- COPYING file in the source package for more information. |
7 -- | 7 -- |
8 | 8 |
9 local setmetatable = setmetatable; | 9 local setmetatable = setmetatable; |
10 local pairs, ipairs = pairs, ipairs; | 10 local ipairs = ipairs; |
11 local tostring, type, next = tostring, type, next; | 11 local tostring, type, next = tostring, type, next; |
12 local t_concat = table.concat; | 12 local t_concat = table.concat; |
13 local st = require "util.stanza"; | 13 local st = require "util.stanza"; |
14 local jid_prep = require "util.jid".prep; | 14 local jid_prep = require "util.jid".prep; |
15 | 15 |