aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-07-19 15:35:07 +0100
committerMatthew Wild <mwild1@gmail.com>2012-07-19 15:35:07 +0100
commit9f5ddb8708ac4cca468523877c23cd1ebdb2a3de (patch)
treed224159467d9175d5aac2372113aa0a6ef5019c2 /core
parent88f2090c5b3ace2f2f07de9735fa60307a19d010 (diff)
downloadprosody-9f5ddb8708ac4cca468523877c23cd1ebdb2a3de.tar.gz
prosody-9f5ddb8708ac4cca468523877c23cd1ebdb2a3de.zip
moduleapi: Remove unused import of util.multitable
Diffstat (limited to 'core')
-rw-r--r--core/moduleapi.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua
index 24d29dfe..572dc179 100644
--- a/core/moduleapi.lua
+++ b/core/moduleapi.lua
@@ -14,8 +14,6 @@ local logger = require "util.logger";
local pluginloader = require "util.pluginloader";
local timer = require "util.timer";
-local multitable_new = require "util.multitable".new;
-
local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
local error, setmetatable, setfenv, type = error, setmetatable, setfenv, type;
local ipairs, pairs, select, unpack = ipairs, pairs, select, unpack;
@@ -339,4 +337,4 @@ function api:load_resource(path, mode)
return io.open(path, mode);
end
-return api;
+return api; \ No newline at end of file