From 4ef69794a344f7d0c387a038ef02bfd447544fb0 Mon Sep 17 00:00:00 2001 From: Adam Brown Date: Wed, 23 Sep 2015 14:16:26 -0700 Subject: [PATCH] Fixed method name in Java ApiClient mustache template --- .../swagger-codegen/src/main/resources/Java/ApiClient.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/swagger-codegen/src/main/resources/Java/ApiClient.mustache b/modules/swagger-codegen/src/main/resources/Java/ApiClient.mustache index 5e18c854cba4..fedbe47baba8 100644 --- a/modules/swagger-codegen/src/main/resources/Java/ApiClient.mustache +++ b/modules/swagger-codegen/src/main/resources/Java/ApiClient.mustache @@ -212,7 +212,7 @@ public class ApiClient { /** * Set the date format used to parse/format date parameters. */ - public ApiClient getDateFormat(DateFormat dateFormat) { + public ApiClient setDateFormat(DateFormat dateFormat) { this.dateFormat = dateFormat; return this; }