We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb36eee commit e1e1e62Copy full SHA for e1e1e62
src/test/java/com/fasterxml/jackson/dataformat/xml/lists/ListAsObjectTest.java
@@ -13,15 +13,15 @@
13
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlElementWrapper;
14
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
15
16
+// Test originally from [dataformat-xml#76]
17
@SuppressWarnings("serial")
18
public class ListAsObjectTest extends XmlTestBase
19
{
20
static final class Value {
21
@XmlElement(name = "v")
22
public String v;
-
23
+
24
public String getV() { return v; }
25
public void setV(final String v) { this.v = v; }
26
}
27
0 commit comments