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 849ed17 commit f6a5406Copy full SHA for f6a5406
jsonb-generator/src/main/java/io/avaje/jsonb/generator/BeanReader.java
@@ -172,7 +172,7 @@ void writeConstructor(Append writer) {
172
}
173
Set<String> uniqueTypes = new HashSet<>();
174
for (FieldReader allField : allFields) {
175
- if (allField.include() || !allField.isRaw()) {
+ if (allField.include() && !allField.isRaw()) {
176
if (uniqueTypes.add(allField.adapterShortType())) {
177
allField.writeConstructor(writer);
178
0 commit comments