Skip to content

Commit aff78c0

Browse files
committed
Tiny clean up
1 parent 4f96dc7 commit aff78c0

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

src/main/java/com/fasterxml/jackson/dataformat/xml/deser/FromXmlParser.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -475,11 +475,6 @@ public void addVirtualWrapping(Set<String> namesToWrap0, boolean caseInsensitive
475475
_parsingContext.setNamesToWrap(namesToWrap);
476476
}
477477

478-
@Deprecated // since 2.12
479-
public void addVirtualWrapping(Set<String> namesToWrap) {
480-
addVirtualWrapping(namesToWrap, false);
481-
}
482-
483478
/*
484479
/**********************************************************
485480
/* JsonParser impl

src/main/java/com/fasterxml/jackson/dataformat/xml/util/StaxUtil.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,6 @@
1515

1616
public class StaxUtil
1717
{
18-
/**
19-
* Adapter method used when only IOExceptions are declared to be thrown, but
20-
* a {@link XMLStreamException} was caught.
21-
*<p>
22-
* Note: dummy type variable is used for convenience, to allow caller to claim
23-
* that this method returns result of any necessary type.
24-
*
25-
* @deprecated Since 2.9
26-
*/
27-
@Deprecated
28-
public static <T> T throwXmlAsIOException(XMLStreamException e) throws IOException
29-
{
30-
Throwable t = _unwrap(e);
31-
throw new IOException(t);
32-
}
33-
3418
/**
3519
* @since 2.9
3620
*/

0 commit comments

Comments
 (0)