[timer] Handle cancel(nil) as NOP.

This commit is contained in:
Lorenzo Cogotti 2023-09-19 18:11:17 +02:00
parent 2abcf253ca
commit f6e031a98a

View File

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