mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
21 lines
396 B
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();
|
|
}
|
|
}
|