diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-28 02:24:41 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-28 02:24:41 +0100 |
commit | de0b898bb86efba22e9c6c89a9719127c59710da (patch) | |
tree | 1e83204547c92a48a3d6d1ba80a436afc9e842cf /core/moduleapi.lua | |
parent | a4d9a4101e53a2a1f86c4bc3af0a8ce3711d4afb (diff) | |
download | prosody-de0b898bb86efba22e9c6c89a9719127c59710da.tar.gz prosody-de0b898bb86efba22e9c6c89a9719127c59710da.zip |
moduleapi: Remove unused variable 'module_items'
Diffstat (limited to 'core/moduleapi.lua')
-rw-r--r-- | core/moduleapi.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index 9e8489c2..f23dc118 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -255,7 +255,6 @@ function api:get_option_set(name, ...) return set.new(value); end -local module_items = multitable_new(); function api:add_item(key, value) self.items = self.items or {}; self.items[key] = self.items[key] or {}; |