1 29 30 package com.caucho.quercus.lib.zlib; 31 32 import java.io.IOException ; 33 import java.io.InputStream ; 34 35 39 public class GZIPInputStream extends java.util.zip.GZIPInputStream  40 { 41 public GZIPInputStream(InputStream in) throws IOException  42 { 43 super(in); 44 } 45 public GZIPInputStream(InputStream in, int size) throws IOException  46 { 47 super(in, size); 48 } 49 50 55 public boolean isEOS() 56 { 57 return this.eos; 58 } 59 60 61 } | Popular Tags |