configmanager: Remove unused local [luacheck]
authorKim Alvefur <zash@zash.se>
Sun, 28 May 2017 23:40:26 +0200
changeset 8161 b4cbd65ee4c5
parent 8160 4947e84f2e5b
child 8165 a49c8930da3d
configmanager: Remove unused local [luacheck]
core/configmanager.lua
--- a/core/configmanager.lua	Sat May 27 17:30:16 2017 +0200
+++ b/core/configmanager.lua	Sun May 28 23:40:26 2017 +0200
@@ -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;