diff options
author | Kim Alvefur <zash@zash.se> | 2018-10-21 14:45:22 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-10-21 14:45:22 +0200 |
commit | 2b989c9429dca983722445eff9979f1574d5ce1e (patch) | |
tree | 5e4d1e30b1a4e1de256d7cf093aef07000c8ee1a | |
parent | f364ac898879be9a44fe5d1c3566c89407cbd87a (diff) | |
download | prosody-2b989c9429dca983722445eff9979f1574d5ce1e.tar.gz prosody-2b989c9429dca983722445eff9979f1574d5ce1e.zip |
stanza_router: Remove deprecation warning for core routing functions from global scope (deprecated in 0.9)
-rw-r--r-- | core/stanza_router.lua | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 5caa22f6..f5a34f59 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -19,16 +19,6 @@ local bare_sessions = _G.prosody.bare_sessions; local core_post_stanza, core_process_stanza, core_route_stanza; -local function deprecated_warning(f) - _G[f] = function(...) - log("warn", "Using the global %s() is deprecated, use module:send() or prosody.%s(). %s", f, f, debug.traceback()); - return prosody[f](...); - end -end -deprecated_warning"core_post_stanza"; -deprecated_warning"core_process_stanza"; -deprecated_warning"core_route_stanza"; - local valid_stanzas = { message = true, presence = true, iq = true }; local function handle_unhandled_stanza(host, origin, stanza) --luacheck: ignore 212/host local name, xmlns, origin_type = stanza.name, stanza.attr.xmlns or "jabber:client", origin.type; |