Skip to content

Commit 3003088

Browse files
committed
Minor fix to (passing) test for #307
1 parent 12ddad9 commit 3003088

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/com/fasterxml/jackson/dataformat/xml/lists/ListDeser307Test.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@
1010
public class ListDeser307Test extends XmlTestBase
1111
{
1212
@JacksonXmlRootElement(localName = "customer")
13-
public class CustomerWithoutWrapper {
13+
static class CustomerWithoutWrapper {
1414
public Long customerId;
1515
public String customerName;
1616

1717
@JacksonXmlElementWrapper(useWrapping = false)
1818
public List<Account> account;
1919
}
2020

21-
public class Account {
21+
static class Account {
2222
public Long accountId;
2323
public String accountName;
2424
public String postcode;
25-
}
26-
25+
}
26+
2727
/*
2828
/********************************************************
2929
/* Test methods

0 commit comments

Comments
 (0)