Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
tsachev committed Aug 7, 2019
1 parent f0561a8 commit 380daa8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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
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

0 comments on commit 380daa8

Please sign in to comment.