aboutsummaryrefslogtreecommitdiffstats
path: root/core/configmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-05-28 23:40:26 +0200
committerKim Alvefur <zash@zash.se>2017-05-28 23:40:26 +0200
commitab47caa72fdcefdcc2fd5c39c1a8300a64aa9125 (patch)
treed171c41d9e9e65c3c578d1cd91816b12ea80e2e3 /core/configmanager.lua
parent84bdb8e16589bdeb9e4fa4f501c25e73a1ce2452 (diff)
downloadprosody-ab47caa72fdcefdcc2fd5c39c1a8300a64aa9125.tar.gz
prosody-ab47caa72fdcefdcc2fd5c39c1a8300a64aa9125.zip
configmanager: Remove unused local [luacheck]
Diffstat (limited to 'core/configmanager.lua')
-rw-r--r--core/configmanager.lua4
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;