diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-01-20 11:31:04 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-01-20 11:31:04 +0000 |
commit | a19dc1685071089d57ef390019ba5197df52b116 (patch) | |
tree | 42c8c818f5ae61dde32df6213ff5184c0947a36c /core/portmanager.lua | |
parent | aa594ad923b0206771b6b47fed414834c54c525c (diff) | |
download | prosody-a19dc1685071089d57ef390019ba5197df52b116.tar.gz prosody-a19dc1685071089d57ef390019ba5197df52b116.zip |
portmanager: Remove unused import of pairs()
Diffstat (limited to 'core/portmanager.lua')
-rw-r--r-- | core/portmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/portmanager.lua b/core/portmanager.lua index bc2d4264..eab2412a 100644 --- a/core/portmanager.lua +++ b/core/portmanager.lua @@ -9,7 +9,7 @@ local set = require "util.set"; local table = table; local setmetatable, rawset, rawget = setmetatable, rawset, rawget; -local type, tonumber, tostring, ipairs, pairs = type, tonumber, tostring, ipairs, pairs; +local type, tonumber, tostring, ipairs = type, tonumber, tostring, ipairs; local prosody = prosody; local fire_event = prosody.events.fire_event; |