* clear Timers * @ignore
(timerId: number)
| 265 | * @ignore |
| 266 | */ |
| 267 | clearTimer(timerId: number) { |
| 268 | for (let i = 0; i < this.timers.length; i++) { |
| 269 | if (this.timers[i].timerId === timerId) { |
| 270 | this.timers.splice(i, 1); |
| 271 | break; |
| 272 | } |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * update timers |
no outgoing calls
no test coverage detected