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
The method PropertyListParser.parse(InputStream) is documented as
PropertyListParser.parse(InputStream)
Parses a property list from an InputStream. This method does not close the specified input stream.
Unfortunately the underlying Xerxes XML parser does close the InputStream.
As a workaround I wrap the InputStream to ignore close():
close()
PropertyListParser.parse( new FilterInputStream(inputStream) { @Override public void close() {} });
I see two ways to fix this bug:
The text was updated successfully, but these errors were encountered:
Don't close the input stream in XMLPropertyListParser.parse(InputStre…
79af8f2
…am) (Issue #55)
3breadt
No branches or pull requests
The method
PropertyListParser.parse(InputStream)
is documented asUnfortunately the underlying Xerxes XML parser does close the InputStream.
As a workaround I wrap the InputStream to ignore
close()
:I see two ways to fix this bug:
close()
.The text was updated successfully, but these errors were encountered: