We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2466394 commit f4e8e5cCopy full SHA for f4e8e5c
jsonb-generator/src/main/java/io/avaje/jsonb/generator/FieldReader.java
@@ -84,10 +84,7 @@ private String initAdapterShortType(String shortType) {
84
85
private String initShortName() {
86
if (genericTypeParameter) {
87
- String name = genericType.shortName();
88
- for (String typeParam : genericTypeParams) {
89
- name = name.replace(typeParam, "");
90
- }
+ final String name = genericType.shortName();
91
return Util.initLower(name) + "JsonAdapterGeneric";
92
}
93
return Util.initLower(genericType.shortName()) + "JsonAdapter";
0 commit comments