Skip to content

Commit

Permalink
Mark #294 as fixed as well (same fix as #393, dup issues likely)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed May 12, 2020
1 parent 6408a68 commit 242c869
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions release-notes/CREDITS-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,8 @@ Luke Korth ([email protected])

* Reported #366: XML containing xsi:nil is improperly parsed
(2.10.2)

Alexei Volkov (softkot@github)

* Reported #294: XML parser error with nested same element names
(2.11.1)
2 changes: 2 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Project: jackson-dataformat-xml

2.11.1 (not yet released)

#294: XML parser error with nested same element names
(reported by Alexei V)
#393: `MismatchedInputException` for nested repeating element name in `List`
(reported by kaizenHorse@github)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.dataformat.xml.failing;
package com.fasterxml.jackson.dataformat.xml.lists;

import java.util.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.dataformat.xml.failing;
package com.fasterxml.jackson.dataformat.xml.lists;

import java.util.*;

Expand All @@ -11,7 +11,7 @@
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;

public class Issue393DeserTest extends XmlTestBase
public class ListDeser393Test extends XmlTestBase
{
@JacksonXmlRootElement(localName = "result")
@JsonInclude(JsonInclude.Include.NON_NULL)
Expand Down

0 comments on commit 242c869

Please sign in to comment.