-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
JsonSetter.contentNulls
ignored for Object[]
, String[]
and Collection<String>
#5202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JsonSetter.contentNulls
ignored for Object[]
, String[]
and Collection<String>
#5202
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As confirmed by the following comment, the EnumSetDeserializer
has not been modified.
#5165 (comment)
Also, implemented according to the following comment.
#5174 (comment)
src/test/java/com/fasterxml/jackson/databind/deser/jdk/ObjectArrayDeserializer5165Test.java
Show resolved
Hide resolved
} | ||
|
||
@Test | ||
public void nullsFailTest() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as with Object[]
, no null
s exists in test JSON; test does not trigger handling at all.
JsonSetter.contentNulls
ignored for Object[]
, String[]
and Collection<String>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks for the review! |
@k163377 Thank you for the PR, as always! :) |
SSIA
This is a continuation of #5191.