Hi there, I have some code which calls FilterOutputStream.close(), which calls the underlying OutputStream.flush() which throws IOException.
With previous versions of JavaSE, close() returns successfully without any problems. Using JDK8-b24, I get an IOException which is propagated from flush(). Is there any reason for this change in behaviour? Regards, Alex.
