net.server_epoll: Remove commented out code

This commit is contained in:
Kim Alvefur 2016-08-23 20:31:14 +02:00
parent 1fdfd19e4f
commit feef5c41f1

View file

@ -76,16 +76,6 @@ local function runtimers(next_delay)
resort_timers = false;
end
--[[ Is it worth it to skip the noop calls?
for i = #timers, 1, -1 do
if timers[i][2] == noop then
timers[i] = nil;
else
break;
end
end
--]]
-- Iterate from the end and remove completed timers
for i = #timers, 1, -1 do
local timer = timers[i];