diff options
author | Kim Alvefur <zash@zash.se> | 2013-03-13 07:03:34 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-03-13 07:03:34 +0100 |
commit | 608eb6194a2bbc3816121e440af1ef4349c49d54 (patch) | |
tree | 3eb4118b7a98bc706d1e5caf2c827e97a4c913e0 /core | |
parent | ff9ab821f7bdee398860dc8aae464113ee18c009 (diff) | |
download | prosody-608eb6194a2bbc3816121e440af1ef4349c49d54.tar.gz prosody-608eb6194a2bbc3816121e440af1ef4349c49d54.zip |
rostermanager: Remove unused imports
Diffstat (limited to 'core')
-rw-r--r-- | core/rostermanager.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/rostermanager.lua b/core/rostermanager.lua index fdb890f9..f14bb435 100644 --- a/core/rostermanager.lua +++ b/core/rostermanager.lua @@ -11,10 +11,7 @@ local log = require "util.logger".init("rostermanager"); -local setmetatable = setmetatable; -local format = string.format; -local pcall = pcall; -local pairs, ipairs = pairs, ipairs; +local pairs = pairs; local tostring = tostring; local hosts = hosts; |