Skip to content

Commit 4d1dec6

Browse files
committed
trying to debug #318 regression in 3.0
1 parent 4ff4527 commit 4d1dec6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/test/java/com/fasterxml/jackson/dataformat/xml/deser/EmptyBeanDeser318Test.java

+9
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ static class Wrapper {
1212
String id;
1313
@JacksonXmlProperty(localName = "nested")
1414
Nested nested;
15+
16+
/* for debugging:
17+
public void setNested(Nested n) {
18+
if (n == null) {
19+
throw new IllegalArgumentException();
20+
}
21+
nested = n;
22+
}
23+
*/
1524
}
1625

1726
static class Nested {

0 commit comments

Comments
 (0)