# HG changeset patch # User Matthew Wild # Date 1454631046 0 # Node ID fa6cd0e9105deb591834f5eae4d83cf3b8a38677 # Parent 67226eaef97cdbd3fe00a17da5dc38b7e979979f hostmanager: Remove unused imports of 'jid_split' and 'select' diff -r 67226eaef97c -r fa6cd0e9105d core/hostmanager.lua --- a/core/hostmanager.lua Fri Feb 05 00:10:27 2016 +0000 +++ b/core/hostmanager.lua Fri Feb 05 00:10:46 2016 +0000 @@ -12,8 +12,6 @@ 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 @@ 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;