mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
d8613bb7b9
commit
40c620c7e8
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue