Fix bug of hard-coded enum name in Java client

This commit is contained in:
xhh 2015-09-01 20:04:47 +08:00
parent 72255286b3
commit 2c64e0893b

View File

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