mirror of
https://github.com/corda/corda.git
synced 2025-06-16 06:08:13 +00:00
quick sketches of various SWT 3.3 dependencies
This commit is contained in:
20
classpath/java/util/zip/InflaterInputStream.java
Normal file
20
classpath/java/util/zip/InflaterInputStream.java
Normal file
@ -0,0 +1,20 @@
|
||||
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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user