From fa7f82e9c266c7649fb55b12ba20a49b543f9017 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Sun, 6 Feb 2022 16:43:18 +0100 Subject: [PATCH] Minor modification. --- source/engine/core/taskrunner.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/engine/core/taskrunner.js b/source/engine/core/taskrunner.js index eb87bde..6e1cb8c 100644 --- a/source/engine/core/taskrunner.js +++ b/source/engine/core/taskrunner.js @@ -7,17 +7,17 @@ export class TaskRunner this.callbacks = null; } - Run (count, callbacks) - { + Run (count, callbacks) + { this.count = count; - this.current = 0; + this.current = 0; this.callbacks = callbacks; if (count === 0) { this.TaskReady (); } else { this.RunOnce (); } - } + } RunBatch (count, batchCount, callbacks) {