aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.*