Software /
code /
prosody
Changeset
4749:b9de59ea8dad
util.stanza: Remove unused function imports
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 28 Apr 2012 02:38:56 +0100 |
parents | 4748:1099ff8d9f76 |
children | 4750:b3525f3c2fee |
files | util/stanza.lua |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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;