diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-28 02:25:54 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-28 02:25:54 +0100 |
commit | 3ba967c53a6cd3570047c6e9416be1935eeb174a (patch) | |
tree | a6029f5fc5fc86efe116f1bda577deca9b4d83dc /core/hostmanager.lua | |
parent | e47a14da07a05d80473407b1a0521e54ba76e18b (diff) | |
download | prosody-3ba967c53a6cd3570047c6e9416be1935eeb174a.tar.gz prosody-3ba967c53a6cd3570047c6e9416be1935eeb174a.zip |
hostmanager: Remove import of unused setmetatable
Diffstat (limited to 'core/hostmanager.lua')
-rw-r--r-- | core/hostmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 4b9fa240..a9db1a92 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -24,7 +24,7 @@ if not _G.prosody.incoming_s2s then end local incoming_s2s = _G.prosody.incoming_s2s; -local pairs, setmetatable, select = pairs, setmetatable, select; +local pairs, select = pairs, select; local tostring, type = tostring, type; module "hostmanager" |