diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-09 20:53:33 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-09 20:53:33 +0100 |
commit | 619990cf1f9ce75c60252b54da31ba7597fe57b8 (patch) | |
tree | 14aa9895c8c8e823a90874aa0f05284e08db2e01 | |
parent | e6e285898bd7dab34cf8c4c0ac5a748334f65ff0 (diff) | |
download | prosody-619990cf1f9ce75c60252b54da31ba7597fe57b8.tar.gz prosody-619990cf1f9ce75c60252b54da31ba7597fe57b8.zip |
net.connlisteners: Remove deprecated stub module
This was deprecated in 0.9.x
Removing so auto-completion chooses net/connect.lua instead of net/conn
-rw-r--r-- | net/connlisteners.lua | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/net/connlisteners.lua b/net/connlisteners.lua deleted file mode 100644 index 9b8f88c3..00000000 --- a/net/connlisteners.lua +++ /dev/null @@ -1,18 +0,0 @@ --- COMPAT w/pre-0.9 -local log = require "util.logger".init("net.connlisteners"); -local traceback = debug.traceback; - -local _ENV = nil; --- luacheck: std none - -local function fail() - log("error", "Attempt to use legacy connlisteners API. For more info see https://prosody.im/doc/developers/network"); - log("error", "Legacy connlisteners API usage, %s", traceback("", 2)); -end - -return { - register = fail; - get = fail; - start = fail; - -- epic fail -}; |