Fix hard-coded constructor name of enum class

in Java okhttp-gson client
This commit is contained in:
xhh 2015-09-25 15:52:52 +08:00
parent 0380fc5a35
commit e5a4ef3ba0

View File

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