Software /
code /
prosody
Changeset
1153:1184cb19b6f2
core.xmlhandlers: Removed unused variables
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Fri, 15 May 2009 07:24:16 +0500 |
parents | 1152:4d95e8078405 |
children | 1154:570c0427fcb8 |
files | core/xmlhandlers.lua |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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");