corda/classpath/java/util/zip/InflaterInputStream.java

21 lines
396 B
Java

package java.util.zip;
import java.io.InputStream;
import java.io.IOException;
public class InflaterInputStream extends InputStream {
private final InputStream in;
public InflaterInputStream(InputStream in) {
this.in = in;
}
public int read() throws IOException {
throw new IOException("not implemented");
}
public void close() throws IOException {
in.close();
}
}