Skip to content

Commit

Permalink
trying to debug #318 regression in 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 1, 2020
1 parent 4ff4527 commit 4d1dec6
Showing 1 changed file with 9 additions and 0 deletions.
Expand Up @@ -12,6 +12,15 @@ static class Wrapper {
String id;
@JacksonXmlProperty(localName = "nested")
Nested nested;

/* for debugging:
public void setNested(Nested n) {
if (n == null) {
throw new IllegalArgumentException();
}
nested = n;
}
*/
}

static class Nested {
Expand Down

0 comments on commit 4d1dec6

Please sign in to comment.