aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-05-15 07:24:16 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-05-15 07:24:16 +0500
commit49f84f6dbfa8348b42268f0e5c2858e48308527c (patch)
tree07997f0ddcca4687059ab25ee4eeb5ab709b4d4d /core
parent49f6299766454759ebc597e22881fda6329f380b (diff)
downloadprosody-49f84f6dbfa8348b42268f0e5c2858e48308527c.tar.gz
prosody-49f84f6dbfa8348b42268f0e5c2858e48308527c.zip
core.xmlhandlers: Removed unused variables
Diffstat (limited to 'core')
-rw-r--r--core/xmlhandlers.lua6
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");