diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-05-15 07:24:16 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-05-15 07:24:16 +0500 |
commit | 49f84f6dbfa8348b42268f0e5c2858e48308527c (patch) | |
tree | 07997f0ddcca4687059ab25ee4eeb5ab709b4d4d /core/xmlhandlers.lua | |
parent | 49f6299766454759ebc597e22881fda6329f380b (diff) | |
download | prosody-49f84f6dbfa8348b42268f0e5c2858e48308527c.tar.gz prosody-49f84f6dbfa8348b42268f0e5c2858e48308527c.zip |
core.xmlhandlers: Removed unused variables
Diffstat (limited to 'core/xmlhandlers.lua')
-rw-r--r-- | core/xmlhandlers.lua | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/xmlhandlers.lua b/core/xmlhandlers.lua index 7e09921c..ed6f6a48 100644 --- a/core/xmlhandlers.lua +++ b/core/xmlhandlers.lua @@ -15,14 +15,8 @@ local tostring = tostring; local pairs = pairs; local ipairs = ipairs; local type = type; -local print = print; -local format = string.format; -local m_random = math.random; local t_insert = table.insert; -local t_remove = table.remove; local t_concat = table.concat; -local t_concatall = function (t, sep) local tt = {}; for _, s in ipairs(t) do t_insert(tt, tostring(s)); end return t_concat(tt, sep); end -local sm_destroy_session = import("core.sessionmanager", "destroy_session"); local default_log = require "util.logger".init("xmlhandlers"); |