JAL-3026 moves javajs to srcjars
[jalview.git] / srcjar / javajs / api / GenericZipInputStream.java
diff --git a/srcjar/javajs/api/GenericZipInputStream.java b/srcjar/javajs/api/GenericZipInputStream.java
new file mode 100644 (file)
index 0000000..e2e8018
--- /dev/null
@@ -0,0 +1,13 @@
+package javajs.api;
+
+
+import java.io.InputStream;
+import java.util.zip.ZipInputStream;
+
+public class GenericZipInputStream extends ZipInputStream implements ZInputStream {
+  
+  public GenericZipInputStream(InputStream in) {
+    super(in);
+  }
+  
+}
\ No newline at end of file