diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-06-14 21:06:43 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-06-14 21:06:43 +0500 |
commit | 547e4f28d6924fdcd93604d3ffc00eade82ed97e (patch) | |
tree | 91bc1793204030335c804685cf6ea5f98b8c386d | |
parent | 376256439e0f9db51a6a81dd7091dc7ef1d585f8 (diff) | |
download | prosody-547e4f28d6924fdcd93604d3ffc00eade82ed97e.tar.gz prosody-547e4f28d6924fdcd93604d3ffc00eade82ed97e.zip |
modulemanager: Removed unused function get_module_filename(name)
-rw-r--r-- | core/modulemanager.lua | 6 |
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.* |