util.dataforms: Remove unused import of pairs() (thanks luacheck)
authorMatthew Wild <mwild1@gmail.com>
Wed, 6 May 2015 18:38:29 +0000 (19:38 +0100)
committerMatthew Wild <mwild1@gmail.com>
Wed, 6 May 2015 18:38:29 +0000 (19:38 +0100)
util/dataforms.lua

index b2988ae7e5a99df56d6c86d80bcf024086f31cbd..5f246ee8c8d3cb2facd1ae54c5b29107d67a45c7 100644 (file)
@@ -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";