Skip to content

Commit

Permalink
Fix failing tests post databind#4858 (#699)
Browse files Browse the repository at this point in the history
  • Loading branch information
JooHyukKim authored Jan 9, 2025
1 parent 08a87ea commit 3eca136
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ static class MiscOther {
public Boolean B = Boolean.TRUE;
}

private final XmlMapper MAPPER = newMapper();
private final XmlMapper MAPPER = mapperBuilder()
.disable(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES)
.build();

/*
/**********************************************************************
Expand Down

0 comments on commit 3eca136

Please sign in to comment.