# HG changeset patch # User Matthew Wild # Date 1335577136 -3600 # Node ID b9de59ea8dad90cabdad14022ee437f134b9515c # Parent 1099ff8d9f76fdb49e37b20d1c62e381da9776b0 util.stanza: Remove unused function imports diff -r 1099ff8d9f76 -r b9de59ea8dad util/stanza.lua --- a/util/stanza.lua Sat Apr 28 02:25:54 2012 +0100 +++ b/util/stanza.lua Sat Apr 28 02:38:56 2012 +0100 @@ -8,22 +8,16 @@ local t_insert = table.insert; -local t_concat = table.concat; local t_remove = table.remove; local t_concat = table.concat; local s_format = string.format; local s_match = string.match; local tostring = tostring; local setmetatable = setmetatable; -local getmetatable = getmetatable; local pairs = pairs; local ipairs = ipairs; local type = type; -local next = next; -local print = print; -local unpack = unpack; local s_gsub = string.gsub; -local s_char = string.char; local s_find = string.find; local os = os;