You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Shevek (JIRA)" <ji...@apache.org> on 2014/11/19 19:25:34 UTC

[jira] [Created] (COMPRESS-293) BZip2 Compressor count bug

Shevek created COMPRESS-293:
-------------------------------

             Summary: BZip2 Compressor count bug
                 Key: COMPRESS-293
                 URL: https://issues.apache.org/jira/browse/COMPRESS-293
             Project: Commons Compress
          Issue Type: Improvement
          Components: Compressors
    Affects Versions: 1.9
            Reporter: Shevek
            Priority: Minor


BZIp2CompressorInputStream

            count(r < 0 ? -1 : 1);

Do you mean

   count(r < 0 ? 0 : 1);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)