Closed marcospassos closed 4 years ago
Any chance for a small reproduction? :)
Deserializer seems to handle null
s as expected:
JsonObjectBuilder b = _builderFactory.createObjectBuilder();
....
case VALUE_NULL:
b.addNull(name);
break;
// and in another place
switch (p.getCurrentToken()) {
...
case VALUE_NULL:
return JsonValue.NULL;
so it is not immediately clear where null
would be produced; and/or whether that could depend on JSR-353 implementation itself.
@cowtowncoder Thanks your quick reply. I've just submitted a PR that includes the test and fix for the issue.
Alas, need to revert due to #18, for 2.10.5.
The deserializer is deserializing null literally instead of
JsonValue.NULL
.