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 08a87ea commit 3eca136Copy full SHA for 3eca136
src/test/java/tools/jackson/dataformat/xml/deser/EmptyWithScalarsTest.java
@@ -43,7 +43,9 @@ static class MiscOther {
43
public Boolean B = Boolean.TRUE;
44
}
45
46
- private final XmlMapper MAPPER = newMapper();
+ private final XmlMapper MAPPER = mapperBuilder()
47
+ .disable(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES)
48
+ .build();
49
50
/*
51
/**********************************************************************
0 commit comments