001/*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005package org.anarres.parallelgzip;
006
007import java.io.IOException;
008import java.io.InputStream;
009import java.util.zip.GZIPInputStream;
010
011/**
012 *
013 * @author shevek
014 */
015public class ParallelGZIPInputStream extends GZIPInputStream {
016
017    public ParallelGZIPInputStream(InputStream in, int size) throws IOException {
018        super(in, size);
019    }
020
021    public ParallelGZIPInputStream(InputStream in) throws IOException {
022        super(in);
023    }
024}