We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c782df commit e73a605Copy full SHA for e73a605
src/test/java/com/fasterxml/jackson/failing/ConstructorDetector3241Test.java
@@ -47,7 +47,7 @@ static class Input3241 {
47
// @JsonCreator gone!
48
public Input3241(@ImplicitName("field") Boolean field) {
49
if (field == null) {
50
- throw new NullPointerException("Should not get here!");
+ throw new NullPointerException("Field should not remain null!");
51
}
52
this.field = field;
53
@@ -74,7 +74,7 @@ void nullHandlingCreator3241() throws Exception {
74
75
76
private JsonMapper.Builder mapperBuilder() {
77
- return JsonMapper.builder()
+ return jsonMapperBuilder()
78
.annotationIntrospector(new CtorNameIntrospector());
79
80
0 commit comments