Merge pull request #1213 from LeoYReyes/patch-1

[C#] Api.mustache - Remove the parameter in the BasePath getter
This commit is contained in:
wing328 2015-09-11 08:41:08 +08:00
commit e34063f0f2

View File

@ -68,9 +68,8 @@ namespace {{packageName}}.Api
/// <summary> /// <summary>
/// Gets the base path of the API client. /// Gets the base path of the API client.
/// </summary> /// </summary>
/// <param name="basePath">The base path</param>
/// <value>The base path</value> /// <value>The base path</value>
public String GetBasePath(String basePath) public String GetBasePath()
{ {
return this.ApiClient.BasePath; return this.ApiClient.BasePath;
} }