aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-06-14 21:06:43 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-06-14 21:06:43 +0500
commit547e4f28d6924fdcd93604d3ffc00eade82ed97e (patch)
tree91bc1793204030335c804685cf6ea5f98b8c386d /core
parent376256439e0f9db51a6a81dd7091dc7ef1d585f8 (diff)
downloadprosody-547e4f28d6924fdcd93604d3ffc00eade82ed97e.tar.gz
prosody-547e4f28d6924fdcd93604d3ffc00eade82ed97e.zip
modulemanager: Removed unused function get_module_filename(name)
Diffstat (limited to 'core')
-rw-r--r--core/modulemanager.lua6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index 94cecee4..d6220cec 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -268,12 +268,6 @@ function call_module_method(module, method, ...)
end
end
-local _modulepath = { plugin_dir, "mod_", nil, ".lua"};
-function get_module_filename(name)
- _modulepath[3] = name;
- return t_concat(_modulepath);
-end
-
----- API functions exposed to modules -----------
-- Must all be in api.*