net.server_epoll: Ignore unused self argument [luacheck]

This commit is contained in:
Kim Alvefur 2019-09-29 15:51:21 +02:00
parent 79b375cb53
commit 2feedcb7d6

View file

@ -797,7 +797,7 @@ local function link(from, to, read_size)
self:pause();
to:write(data);
end
function to:ondrain()
function to:ondrain() -- luacheck: ignore 212/self
from:resume();
end
from:set_mode(read_size);