configmanager: Remove unused local [luacheck]

This commit is contained in:
Kim Alvefur 2017-05-28 23:40:26 +02:00
parent 84bdb8e165
commit ab47caa72f

View file

@ -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;