mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
modulemanager: Cleanup some unused variables, imports, whitespace and add a comment.
This commit is contained in:
parent
15a0736720
commit
c240995e51
1 changed files with 1 additions and 3 deletions
|
@ -9,8 +9,6 @@
|
||||||
local logger = require "util.logger";
|
local logger = require "util.logger";
|
||||||
local log = logger.init("modulemanager");
|
local log = logger.init("modulemanager");
|
||||||
local config = require "core.configmanager";
|
local config = require "core.configmanager";
|
||||||
local multitable_new = require "util.multitable".new;
|
|
||||||
local st = require "util.stanza";
|
|
||||||
local pluginloader = require "util.pluginloader";
|
local pluginloader = require "util.pluginloader";
|
||||||
|
|
||||||
local hosts = hosts;
|
local hosts = hosts;
|
||||||
|
@ -46,6 +44,7 @@ module "modulemanager"
|
||||||
|
|
||||||
local api = _G.require "core.moduleapi"; -- Module API container
|
local api = _G.require "core.moduleapi"; -- Module API container
|
||||||
|
|
||||||
|
-- [host] = { [module] = module_env }
|
||||||
local modulemap = { ["*"] = {} };
|
local modulemap = { ["*"] = {} };
|
||||||
|
|
||||||
local NULL = {};
|
local NULL = {};
|
||||||
|
@ -185,7 +184,6 @@ local function do_reload_module(host, name)
|
||||||
end
|
end
|
||||||
|
|
||||||
local saved;
|
local saved;
|
||||||
|
|
||||||
if module_has_method(mod, "save") then
|
if module_has_method(mod, "save") then
|
||||||
local ok, ret, err = call_module_method(mod, "save");
|
local ok, ret, err = call_module_method(mod, "save");
|
||||||
if ok then
|
if ok then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue