We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MapExample.builder().items("foo", null).build() produces MapExample{items: {foo=null}}
MapExample.builder().items("foo", null).build()
MapExample{items: {foo=null}}
I expected a SafeNullPointerException("value cannot be null") to be thrown
SafeNullPointerException("value cannot be null")
The text was updated successfully, but these errors were encountered:
Relax CollectionValidationModule map validation to match generated ob…
e4f9dcb
…jects Null map values no longer trigger WARN logging or assertions. Tracking conjure-java failure to validate null map values here: palantir/conjure-java#291
If reimplementing this, can we add a test to make sure we handle Optionals correctly? palantir/conjure-java-runtime#997
Sorry, something went wrong.
No branches or pull requests
What happened?
MapExample.builder().items("foo", null).build()
producesMapExample{items: {foo=null}}
What did you want to happen?
I expected a
SafeNullPointerException("value cannot be null")
to be thrownThe text was updated successfully, but these errors were encountered: