Software /
code /
prosody
Changeset
8158:b4cbd65ee4c5
configmanager: Remove unused local [luacheck]
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 28 May 2017 23:40:26 +0200 |
parents | 8157:4947e84f2e5b |
children | 8162:a49c8930da3d |
files | core/configmanager.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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;