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>
This commit is contained in:
Rich Trott 2016-06-04 11:24:14 -07:00
Родитель e0b8dd59bc
Коммит 671cffa313
1 изменённых файлов: 1 добавлений и 7 удалений

Просмотреть файл

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