Switch back j->i

This commit is contained in:
Tim Mickel 2016-08-29 09:52:34 -04:00
parent 29887e24c9
commit 64b82f4dc2

View file

@ -350,8 +350,8 @@ Runtime.prototype._step = function () {
}
}
var inactiveThreads = this.sequencer.stepThreads(this.threads);
for (var j = 0; j < inactiveThreads.length; j++) {
this._removeThread(inactiveThreads[j]);
for (var i = 0; i < inactiveThreads.length; i++) {
this._removeThread(inactiveThreads[i]);
}
};