From 10ac54f1b35147e6bd875bd0da07db7a297587ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20D=C3=B6rr?= Date: Mon, 20 May 2019 09:49:44 +0200 Subject: [PATCH] typescript-fetch: Remove superfluous closing parenthsesis which result in compilation errors (#2922) --- .../src/main/resources/typescript-fetch/apis.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openapi-generator/src/main/resources/typescript-fetch/apis.mustache b/modules/openapi-generator/src/main/resources/typescript-fetch/apis.mustache index 0ce4291e5d..6a1967c7c8 100644 --- a/modules/openapi-generator/src/main/resources/typescript-fetch/apis.mustache +++ b/modules/openapi-generator/src/main/resources/typescript-fetch/apis.mustache @@ -94,7 +94,7 @@ export class {{classname}} extends runtime.BaseAPI { {{#headerParams}} {{#isListContainer}} if (requestParameters.{{paramName}}) { - headerParameters['{{baseName}}'] = requestParameters.{{paramName}}.join(runtime.COLLECTION_FORMATS["{{collectionFormat}}"])); + headerParameters['{{baseName}}'] = requestParameters.{{paramName}}.join(runtime.COLLECTION_FORMATS["{{collectionFormat}}"]); } {{/isListContainer}}