1
0
Fork 0
mirror of https://github.com/bjc/prosody.git synced 2025-04-06 22:57:38 +03:00

hostmanager: Remove unused imports of 'jid_split' and 'select'

This commit is contained in:
Matthew Wild 2016-02-05 00:10:46 +00:00
parent ee4541c4d8
commit e807440f36

View file

@ -12,8 +12,6 @@ local events_new = require "util.events".new;
local disco_items = require "util.multitable".new();
local NULL = {};
local jid_split = require "util.jid".split;
local log = require "util.logger".init("hostmanager");
local hosts = prosody.hosts;
@ -24,7 +22,7 @@ end
local incoming_s2s = _G.prosody.incoming_s2s;
local core_route_stanza = _G.prosody.core_route_stanza;
local pairs, select, rawget = pairs, select, rawget;
local pairs, rawget = pairs, rawget;
local tostring, type = tostring, type;
local setmetatable = setmetatable;