Software /
code /
prosody
Changeset
8020:342ce07836de
mod_storage_internal: Ignore unused 'self' argument [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 31 Mar 2017 17:39:41 +0200 |
parents | 8019:925098aad268 |
children | 8021:83f18982bcfd |
files | plugins/mod_storage_internal.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_internal.lua Fri Mar 31 17:38:46 2017 +0200 +++ b/plugins/mod_storage_internal.lua Fri Mar 31 17:39:41 2017 +0200 @@ -12,11 +12,11 @@ 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