25262728293031
* @author Alexey Andreev <konsoletyper@gmail.com> */ public class TInflaterInputStream extends FilterInputStream { public TInflaterInputStream(InputStream in) throws IOException { super(in); this.in = new InflaterInputStream(in); }