~ubuntu-branches/ubuntu/utopic/libcommons-compress-java/utopic

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/compress/compressors/gzip/GzipCompressorInputStream.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2013-11-02 13:55:47 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131102135547-nhcubj3ae7rv6t13
Tags: 1.6-1
* New upstream release
* Updated Standards-Version to 3.9.5 (no changes)
* Build depend on debhelper >= 9
* Removed the unused debian/orig-tar.sh script

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
    }
211
211
 
212
212
    private void readToNull(DataInputStream inData) throws IOException {
213
 
        while (inData.readUnsignedByte() != 0x00) {}
 
213
        while (inData.readUnsignedByte() != 0x00) { // NOPMD
 
214
        }
214
215
    }
215
216
 
216
 
    /** {@inheritDoc} */
217
217
    @Override
218
218
    public int read() throws IOException {
219
219
        return read(oneByte, 0, 1) == -1 ? -1 : (oneByte[0] & 0xFF);