Diff

core/configmanager.lua @ 8158:b4cbd65ee4c5

configmanager: Remove unused local [luacheck]
author Kim Alvefur <zash@zash.se>
date Sun, 28 May 2017 23:40:26 +0200
parent 8153:c22d5680ca68
child 8555:4f0f5b49bb03
line wrap: on
line diff
--- 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;