summaryrefslogtreecommitdiff
path: root/src/util/timer.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/timer.ts')
-rw-r--r--src/util/timer.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/timer.ts b/src/util/timer.ts
index 8706c939e..a1712b03f 100644
--- a/src/util/timer.ts
+++ b/src/util/timer.ts
@@ -87,7 +87,7 @@ const nullTimerHandle = {
* Group of timers that can be destroyed at once.
*/
export class TimerGroup {
- private stopped: boolean = false;
+ private stopped = false;
private timerMap: { [index: number]: TimerHandle } = {};