From 92e8efde1a72d367c37716d3c1453d15d54a90ec Mon Sep 17 00:00:00 2001 From: lunat Date: Tue, 19 Jul 2016 14:37:03 +0200 Subject: [PATCH] Csharp api key header issue 3295 --- .../src/main/resources/csharp/Configuration.mustache | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache b/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache index 2932c59eb10..b8cd6c1b330 100644 --- a/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache +++ b/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache @@ -169,14 +169,14 @@ namespace {{packageName}}.Client /// Api Key name. /// Api Key value. /// - public void AddApiKey(string key, string value) + public void AddApiKey(string key, string value) { if (ApiKey.ContainsKey(key)) ApiKey.Remove(key); ApiKey.Add(key, value); } - /// + /// /// Sets the API key prefix. /// /// Api Key name. @@ -188,7 +188,6 @@ namespace {{packageName}}.Client ApiKeyPrefix.Add(key, value); } - /// /// Gets or sets the HTTP user agent. ///