Set removeEnumValuePrefix to false by default (#20452)

* set removeEnumValuePrefix to false by default

* update tests
This commit is contained in:
William Cheng
2025-01-13 16:25:10 +08:00
committed by GitHub
parent 479cd522e0
commit 09530b4781
16 changed files with 52 additions and 49 deletions

View File

@@ -29,11 +29,11 @@ import com.google.gson.stream.JsonWriter;
@JsonAdapter(CodesEnum.Adapter.class)
public enum CodesEnum {
_1("Code 1"),
CODE_1("Code 1"),
_2("Code 2"),
CODE_2("Code 2"),
_3("Code 3");
CODE_3("Code 3");
private String value;