diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-10-14 09:56:14 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-10-14 09:56:14 +0500 |
commit | 97f1c951bccbc080d45336d3e7fdf50a0b6eca14 (patch) | |
tree | f64cd3013e5a48edf06b13ca324b4c42690ead4b | |
parent | a3e21e6d576ecfd2b348a39fb1ebc4c8723b9315 (diff) | |
download | prosody-97f1c951bccbc080d45336d3e7fdf50a0b6eca14.tar.gz prosody-97f1c951bccbc080d45336d3e7fdf50a0b6eca14.zip |
Removed an unnecessary line
-rw-r--r-- | core/stanza_router.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index e6085595..7fa18eb0 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -10,8 +10,7 @@ local log = require "util.logger".init("stanzarouter") local st = require "util.stanza"; local send = require "core.sessionmanager".send_to_session; -require "util.jid" -local jid_split = jid.split; +local jid_split = require "util.jid".split; function core_process_stanza(origin, stanza) log("debug", "Received: "..tostring(stanza)) |