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 | fefbf230135141e84fdb5bb7ba51284715358599 (patch) | |
tree | 9933613b27ecb5b70cc51db5464d05dedb7a4207 | |
parent | b1d929678998a3b6e2e31b234bbac244b2379454 (diff) | |
download | prosody-fefbf230135141e84fdb5bb7ba51284715358599.tar.gz prosody-fefbf230135141e84fdb5bb7ba51284715358599.zip |
mod_storage_internal: Ignore unused 'self' argument [luacheck]
-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 |