net.server_epoll: Remove unnecessary luacheck annotations
authorKim Alvefur <zash@zash.se>
Thu, 01 Apr 2021 12:30:55 +0200
changeset 11501 960674938665
parent 11500 8bf632540197
child 11502 d61ec5e6ee16
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.
net/server_epoll.lua
--- a/net/server_epoll.lua	Wed Mar 31 09:43:05 2021 +0200
+++ b/net/server_epoll.lua	Thu Apr 01 12:30:55 2021 +0200
@@ -179,18 +179,18 @@
 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