diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-08-01 01:27:42 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-08-01 01:27:42 +0100 |
commit | fb61e33ec5b10ac8228874ba2125687e0d887bf2 (patch) | |
tree | 17faf64bc38eb90f067c65e8c9012c3f5043638d | |
parent | 34573f08ca0471bdb17ed1480e2a86ff90e8ba56 (diff) | |
download | prosody-fb61e33ec5b10ac8228874ba2125687e0d887bf2.tar.gz prosody-fb61e33ec5b10ac8228874ba2125687e0d887bf2.zip |
util.pluginloader: Remove unused imports
-rw-r--r-- | util/pluginloader.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/pluginloader.lua b/util/pluginloader.lua index cec8a3f6..c10fdf65 100644 --- a/util/pluginloader.lua +++ b/util/pluginloader.lua @@ -14,8 +14,7 @@ for path in (CFG_PLUGINDIR or "./plugins/"):gsub("[/\\]", dir_sep):gmatch("[^".. plugin_dir[#plugin_dir + 1] = path; end -local io_open, os_time = io.open, os.time; -local loadstring, pairs = loadstring, pairs; +local io_open = io.open; local envload = require "util.envload".envload; module "pluginloader" |