Remove the parameter in the BasePath getter

The parameter in the BasePath getter is not needed.
This commit is contained in:
Leo 2015-09-10 12:17:23 -05:00
parent b3db24ead6
commit 43d71ed10c

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;
} }