net.server_epoll: Remove unnecessary luacheck annotations

Not sure why these were here to begin with, since it does use the 'self'
argument and did so since they were added.
This commit is contained in:
Kim Alvefur 2021-04-01 12:30:55 +02:00
parent d8613bb7b9
commit 40c620c7e8

View file

@ -179,18 +179,18 @@ function interface_mt:__tostring()
end
interface.log = log;
function interface:debug(msg, ...) --luacheck: ignore 212/self
function interface:debug(msg, ...)
self.log("debug", msg, ...);
end
interface.noise = interface.debug;
function interface:noise(msg, ...) --luacheck: ignore 212/self
function interface:noise(msg, ...)
if cfg.verbose then
return self:debug(msg, ...);
end
end
function interface:error(msg, ...) --luacheck: ignore 212/self
function interface:error(msg, ...)
self.log("error", msg, ...);
end