# HG changeset patch # User Matthew Wild # Date 1430937509 -3600 # Node ID f6f39c2f1b1f4da42a7869c87cae7f7fe720b2e5 # Parent e4338c0f739aa6f336bf8c3f9dee68ac95ea668d util.dataforms: Remove unused import of pairs() (thanks luacheck) diff -r e4338c0f739a -r f6f39c2f1b1f util/dataforms.lua --- 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";