maxxedev commented on PR #866: URL: https://github.com/apache/commons-io/pull/866#issuecomment-5324347441
> * Previously the code silently skipped cleaning when unsupported. > * `getCleaner()` code does not work well Fixed to silently skip, and improved `getCleaner()` handling. > Why does one input stream track `clean` and `cleaned` while the other doesn't? BufferedFileChannelInputStream extends InputStream, and uses its own `cleaned` flag. MemoryMappedFileInputStream extends AbstractInputStream, and uses their `isClosed` flag I've changed BufferedFileChannelInputStream to also extend AbstractInputStream, and be more like MemoryMappedFileInputStream thanks -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
