From 826eb102c88ca4722a44fe1cc150ba16a30ef9a6 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Sun, 27 Apr 2014 12:46:57 -0700 Subject: [PATCH] style fix for bool --- threads.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/threads.js b/threads.js index ef83b469..ca6bcd2a 100644 --- a/threads.js +++ b/threads.js @@ -1482,7 +1482,7 @@ Process.prototype.doSetFastTracking = function (bool) { if (this.homeContext.receiver) { ide = this.homeContext.receiver.parentThatIsA(IDE_Morph); if (ide) { - if (bool === true) { + if (bool) { ide.startFastTracking(); } else { ide.stopFastTracking();