Skip to content

Commit d323318

Browse files
Stefan SchubertStefan Schubert
authored andcommitted
remove needless bracket
1 parent a2633f1 commit d323318

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mustache/api.service.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ export class {{classname}} {
360360
}
361361
this.configuration.afterHandler('{{operationIdOriginal}}', '{{httpMethod}}'.toUpperCase(), result);
362362
};
363-
handle = handle.pipe(tap(afterHandler, afterHandler)));
363+
handle = handle.pipe(tap(afterHandler, afterHandler));
364364
if (cancelPreviousRequest && this.cancelMap['{{operationIdOriginal}}']) {
365365
this.cancelMap['{{operationIdOriginal}}'].asObservable().subscribe(() => afterHandler(new Error('CANCELLED'), false));
366366
}

0 commit comments

Comments
 (0)