diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-06-14 18:21:19 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-06-14 18:21:19 +0500 |
commit | 41134c93cef8b157053c11ffef215a3bf8351f1d (patch) | |
tree | 6a30dbb131bb6325680527271da2ee271637e55e /core/stanza_router.lua | |
parent | f043ab1495b7d291d60156719c8553546ce7d69a (diff) | |
download | prosody-41134c93cef8b157053c11ffef215a3bf8351f1d.tar.gz prosody-41134c93cef8b157053c11ffef215a3bf8351f1d.zip |
stanza_router: Remove unused variables
Diffstat (limited to 'core/stanza_router.lua')
-rw-r--r-- | core/stanza_router.lua | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 32c1a088..cf4257c5 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -17,24 +17,18 @@ local send_s2s = require "core.s2smanager".send_to_host; local user_exists = require "core.usermanager".user_exists; local rostermanager = require "core.rostermanager"; -local sessionmanager = require "core.sessionmanager"; local offlinemanager = require "core.offlinemanager"; local modules_handle_stanza = require "core.modulemanager".handle_stanza; local component_handle_stanza = require "core.componentmanager".handle_stanza; -local format = string.format; local tostring = tostring; -local t_concat = table.concat; local t_insert = table.insert; -local tonumber = tonumber; -local s_find = string.find; local pairs = pairs; local ipairs = ipairs; local jid_split = require "util.jid".split; local jid_prepped_split = require "util.jid".prepped_split; -local print = print; local fire_event = prosody.events.fire_event; local select_best_resources; |