[ 
https://issues.apache.org/jira/browse/COMPRESS-2?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Christian Grobmeier resolved COMPRESS-2.
----------------------------------------

       Resolution: Won't Fix
    Fix Version/s: 1.0

According discussion:
http://www.mail-archive.com/d...@commons.apache.org/msg08920.html
and the solution proposed from Jukka i put this to "won't fix".

Before reopening this issue, please start a discussion on the dev mailinglist.

> BZip2CompressorInputStream doesn't work if wrapped into InputStreamReader
> -------------------------------------------------------------------------
>
>                 Key: COMPRESS-2
>                 URL: https://issues.apache.org/jira/browse/COMPRESS-2
>             Project: Commons Compress
>          Issue Type: Bug
>         Environment: Unix
>            Reporter: Ingo Rockel
>             Fix For: 1.0
>
>
> The BZip2CompressorInputStream doesn't work if wrapped into InputStreamReader 
> because it doesn't implement "public int available()" from InputStream.
> Adding the following method to BZip2CompressorInputStream fixes the problem:
>     public int available() throws IOException {
>         return(in.available());
>     }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to