# HG changeset patch # User Kim Alvefur # Date 1496007626 -7200 # Node ID b4cbd65ee4c5c124ccdce9ce7091840005aba7fe # Parent 4947e84f2e5b8656711abcabe7ddc7c90e4d94bd configmanager: Remove unused local [luacheck] diff -r 4947e84f2e5b -r b4cbd65ee4c5 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;