From 43d71ed10c07a34c407e17ce7b2880653bb181b0 Mon Sep 17 00:00:00 2001 From: Leo Date: Thu, 10 Sep 2015 12:17:23 -0500 Subject: [PATCH] Remove the parameter in the BasePath getter The parameter in the BasePath getter is not needed. --- modules/swagger-codegen/src/main/resources/csharp/api.mustache | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/swagger-codegen/src/main/resources/csharp/api.mustache b/modules/swagger-codegen/src/main/resources/csharp/api.mustache index 24c65f85ba8..8b958fd0c88 100644 --- a/modules/swagger-codegen/src/main/resources/csharp/api.mustache +++ b/modules/swagger-codegen/src/main/resources/csharp/api.mustache @@ -68,9 +68,8 @@ namespace {{packageName}}.Api /// /// Gets the base path of the API client. /// - /// The base path /// The base path - public String GetBasePath(String basePath) + public String GetBasePath() { return this.ApiClient.BasePath; }