Skip to content

Commit

Permalink
Fix for #3025 (#3026)
Browse files Browse the repository at this point in the history
  • Loading branch information
Migwel authored Jan 27, 2021
1 parent 666a6ac commit fca1e7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ protected Object _mapObjectWithDups(JsonParser p, DeserializationContext ctxt,
newValue = deserialize(p, ctxt);
oldValue = result.put(nextKey, newValue);
if ((oldValue != null) && squashDups) {
_squashDups(result, key, oldValue, newValue);
_squashDups(result, nextKey, oldValue, newValue);
}
nextKey = p.nextFieldName();
}
Expand Down

0 comments on commit fca1e7d

Please sign in to comment.