diff options
author | Kim Alvefur <zash@zash.se> | 2017-05-28 23:40:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-05-28 23:40:26 +0200 |
commit | f176688ed175d5e8768b3232a9d934f9a380bd61 (patch) | |
tree | d171c41d9e9e65c3c578d1cd91816b12ea80e2e3 | |
parent | 3513190931f213b9f661dde88db87ddbfd531b35 (diff) | |
download | prosody-f176688ed175d5e8768b3232a9d934f9a380bd61.tar.gz prosody-f176688ed175d5e8768b3232a9d934f9a380bd61.zip |
configmanager: Remove unused local [luacheck]
-rw-r--r-- | core/configmanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/configmanager.lua b/core/configmanager.lua index 3f7bfca0..bb55d3f8 100644 --- a/core/configmanager.lua +++ b/core/configmanager.lua @@ -7,8 +7,8 @@ -- local _G = _G; -local setmetatable, rawget, rawset, io, error, dofile, type, pairs, table = - setmetatable, rawget, rawset, io, error, dofile, type, pairs, table; +local setmetatable, rawget, rawset, io, error, dofile, type, pairs = + setmetatable, rawget, rawset, io, error, dofile, type, pairs; local format, math_max = string.format, math.max; local fire_event = prosody and prosody.events.fire_event or function () end; |