diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-31 17:39:41 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-31 17:39:41 +0200 |
commit | 91c38521ad0476190e33427692dd38dfb05c4619 (patch) | |
tree | 9933613b27ecb5b70cc51db5464d05dedb7a4207 /plugins | |
parent | 7b14467d602d8998281214f16777c8306d69d46a (diff) | |
download | prosody-91c38521ad0476190e33427692dd38dfb05c4619.tar.gz prosody-91c38521ad0476190e33427692dd38dfb05c4619.zip |
mod_storage_internal: Ignore unused 'self' argument [luacheck]
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_internal.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_storage_internal.lua b/plugins/mod_storage_internal.lua index 557a329e..294d823c 100644 --- a/plugins/mod_storage_internal.lua +++ b/plugins/mod_storage_internal.lua @@ -12,11 +12,11 @@ function driver:open(store, typ) return setmetatable({ store = store, type = typ }, mt); end -function driver:stores(username) +function driver:stores(username) -- luacheck: ignore 212/self return datamanager.stores(username, host); end -function driver:purge(user) +function driver:purge(user) -- luacheck: ignore 212/self return datamanager.purge(user, host); end |