We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stax2ByteArraySource
(note: created for FasterXML/jackson-dataformat-xml#428)
Looks like construction of an XMLStreamReader with code like:
XMLStreamReader
XMLStreamReader getReader(byte[] b) throws XMLStreamException { XMLInputFactory2 f = ... Stax2ByteArraySource src = new Stax2ByteArraySource(b, 0, b.length); return f.createXMLStreamReader(src); }
fails with an NPE.
The text was updated successfully, but these errors were encountered:
d0c237b
Bump woodstox to 6.1.3
6b0e6c3
Fixes: FasterXML/woodstox#112 FasterXML/woodstox#117 Change-Id: I34494517ba1af3cf41013f63909db43f05ca30b2 Signed-off-by: Robert Varga <[email protected]>
c9d8028
Fixes: FasterXML/woodstox#112 FasterXML/woodstox#117 Change-Id: I34494517ba1af3cf41013f63909db43f05ca30b2 Signed-off-by: Robert Varga <[email protected]> (cherry picked from commit 6b0e6c3)
No branches or pull requests
(note: created for FasterXML/jackson-dataformat-xml#428)
Looks like construction of an
XMLStreamReader
with code like:fails with an NPE.
The text was updated successfully, but these errors were encountered: