d7cd492a by brandonocasey

fixing more line breaks on parens

1 parent 22b23e8e
......@@ -353,10 +353,8 @@ export class AsyncStream extends Stream {
processJob_() {
this.jobs.shift()();
if (this.jobs.length) {
this.timeout_ = setTimeout(
this.processJob_.bind(this),
this.delay
);
this.timeout_ = setTimeout(this.processJob_.bind(this),
this.delay);
} else {
this.timeout_ = null;
}
......@@ -364,10 +362,8 @@ export class AsyncStream extends Stream {
push(job) {
this.jobs.push(job);
if (!this.timeout_) {
this.timeout_ = setTimeout(
this.processJob_.bind(this),
this.delay
);
this.timeout_ = setTimeout(this.processJob_.bind(this),
this.delay);
}
}
}
......