Merge pull request #1296 from xhh/fix-enum-constructor

Fix hard-coded constructor name of enum class in Java okhttp-gson client
This commit is contained in:
wing328 2015-09-25 16:34:13 +08:00
commit 2a5ab78056

View File

@ -6,7 +6,7 @@ public enum {{datatypeWithEnum}} {
private String value; private String value;
StatusEnum(String value) { {{datatypeWithEnum}}(String value) {
this.value = value; this.value = value;
} }