Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ protected final Object _deserialize(JsonParser p,
return _handleUnexpectedWithin(p, ctxt, builder);
}
p.nextToken();
handleUnknownVanilla(p, ctxt, handledType(), p.currentName());
handleUnknownVanilla(p, ctxt, builder, p.currentName());
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ static class ValueBuilder822
public int x;
private Map<String,Object> stuff = new HashMap<String,Object>();

public ValueBuilder822 withX(int x0) {
@JsonCreator
public ValueBuilder822(@JsonProperty("x") int x0) {
this.x = x0;
return this;
}

@JsonAnySetter
Expand Down