Skip to content

Commit 91d6b3f

Browse files
committed
Undo some changes that don't affect the result
1 parent 67ad002 commit 91d6b3f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/completion-listener.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,11 +126,11 @@ export class CompletionListener {
126126
first.timings.endDate.getTime() - second.timings.endDate.getTime(),
127127
),
128128
),
129-
switchMap((events) => {
130-
return this.isSuccess(events)
129+
switchMap((events) =>
130+
this.isSuccess(events)
131131
? this.emitWithScheduler(Rx.of(events))
132-
: this.emitWithScheduler(Rx.throwError(() => events));
133-
}),
132+
: this.emitWithScheduler(Rx.throwError(() => events)),
133+
),
134134
take(1),
135135
),
136136
);

0 commit comments

Comments
 (0)