# HG changeset patch # User Matthew Wild # Date 1454631027 0 # Node ID 67226eaef97cdbd3fe00a17da5dc38b7e979979f # Parent 362545c3f8bbeb6f17681500528b36e8935f5918 moduleapi: Silence luacheck warning about unused 'id' parameter diff -r 362545c3f8bb -r 67226eaef97c core/moduleapi.lua --- a/core/moduleapi.lua Fri Feb 05 00:04:11 2016 +0000 +++ b/core/moduleapi.lua Fri Feb 05 00:10:27 2016 +0000 @@ -399,7 +399,7 @@ timer.reschedule(self.id, delay) end -local function timer_callback(now, id, t) +local function timer_callback(now, id, t) --luacheck: ignore 212/id if t.module_env.loaded == false then return; end return t.callback(now, unpack(t, 1, t.n)); end