# HG changeset patch # User Waqas Hussain # Date 1242354256 -18000 # Node ID 1184cb19b6f2a1f6a2ff91630f495c00cae24bb7 # Parent 4d95e8078405fe392f1c3ec6aa6eb11f20530141 core.xmlhandlers: Removed unused variables diff -r 4d95e8078405 -r 1184cb19b6f2 core/xmlhandlers.lua --- a/core/xmlhandlers.lua Fri May 15 07:04:41 2009 +0500 +++ b/core/xmlhandlers.lua Fri May 15 07:24:16 2009 +0500 @@ -15,14 +15,8 @@ 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");