Browse Source

debugger: remove obsolete setTimeout

Remove obsolete `setTimeout()` introduced in 3148f1400. The fix for the
problem is in b266074347. (For the record, I mostly don't know what I'm
talking about here but am summarizing from an IRC #node-dev conversation
with @indutny on 04-Jun-2016.)

PR-URL: https://github.com/nodejs/node/pull/7154
Reviewed-By: Fedor Indutny <fedor@indutny.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
v4.x
Rich Trott 9 years ago
committed by Myles Borins
parent
commit
3be5cdcd43
  1. 8
      lib/_debugger.js

8
lib/_debugger.js

@ -825,13 +825,7 @@ function Interface(stdin, stdout, args) {
// Run script automatically // Run script automatically
this.pause(); this.pause();
// XXX Need to figure out why we need this delay setImmediate(() => { this.run(); });
setTimeout(function() {
self.run(function() {
self.resume();
});
}, 10);
} }

Loading…
Cancel
Save