emopers opened a new pull request #82: Flush the OutputStream before calling toByteArray on underlying ByteArrayOutputStream URL: https://github.com/apache/commons-io/pull/82 When an `OutputStream` instance wraps an underlying `ByteArrayOutputStream` instance, it is recommended to flush or close the `OutputStream` before invoking the underlying instances's `toByteArray()`. Although in some of these cases it is not strictly necessary because the `writeObject` method is invoked right before `toByteArray`, and `writeObject` internally calls `flush`/`drain`. However, it is good practice to call `flush`/`close` explicitly as mentioned, for example, [here](http://stackoverflow.com/questions/2984538/how-to-use-bytearrayoutputstream-and-dataoutputstream-simultaneously-java). This pull request adds a call to `flush` method before calls to the `toByteArray` methods.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
