[timer] Handle cancel(nil) as NOP.

master
Lorenzo Cogotti 8 months ago
parent 2abcf253ca
commit f6e031a98a

@ -88,7 +88,9 @@ function Timer:every(delay, after, count)
end
function Timer:cancel(handle)
self.functions[handle] = nil
if handle then
self.functions[handle] = nil
end
end
function Timer:clear()

Loading…
Cancel
Save