diff options
author | Kim Alvefur <zash@zash.se> | 2018-03-22 23:20:06 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-03-22 23:20:06 +0100 |
commit | 7ba7fd140b135a726d9aac141114f453bd8c92a7 (patch) | |
tree | e32f9d13a822caad25dfec053f31f611f76cd050 /core/storagemanager.lua | |
parent | 98482848cae3900932653ef3808203b03a950131 (diff) | |
download | prosody-7ba7fd140b135a726d9aac141114f453bd8c92a7.tar.gz prosody-7ba7fd140b135a726d9aac141114f453bd8c92a7.zip |
storagemanager: Remove unused variable [luacheck]
Diffstat (limited to 'core/storagemanager.lua')
-rw-r--r-- | core/storagemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/storagemanager.lua b/core/storagemanager.lua index 5947414b..49191666 100644 --- a/core/storagemanager.lua +++ b/core/storagemanager.lua @@ -1,7 +1,7 @@ local type, pairs = type, pairs; local setmetatable = setmetatable; -local rawset, error = rawset, error; +local rawset = rawset; local config = require "core.configmanager"; local datamanager = require "util.datamanager"; |