diff options
author | Kim Alvefur <zash@zash.se> | 2012-10-14 21:03:52 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-10-14 21:03:52 +0200 |
commit | 4eb35217eeaf518875fa0c4f42f492970931cb3c (patch) | |
tree | 6de2b26470fe2ce6a53a8738e19c6658f012b55a | |
parent | da0876f26f4ee0a706e5c5fcc45d469f23aeabc8 (diff) | |
download | prosody-4eb35217eeaf518875fa0c4f42f492970931cb3c.tar.gz prosody-4eb35217eeaf518875fa0c4f42f492970931cb3c.zip |
mod_pep: Remove unused imports
-rw-r--r-- | plugins/mod_pep.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/mod_pep.lua b/plugins/mod_pep.lua index c2261e5f..a65ee903 100644 --- a/plugins/mod_pep.lua +++ b/plugins/mod_pep.lua @@ -10,10 +10,8 @@ local jid_bare = require "util.jid".bare; local jid_split = require "util.jid".split; local st = require "util.stanza"; -local hosts = hosts; -local user_exists = require "core.usermanager".user_exists; local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed; -local pairs, ipairs = pairs, ipairs; +local pairs = pairs; local next = next; local type = type; local calculate_hash = require "util.caps".calculate_hash; |