unused old SwingJS dependencies
[jalview.git] / src / org / apache / tools / bzip2 / CBZip2InputStreamFactory.java
diff --git a/src/org/apache/tools/bzip2/CBZip2InputStreamFactory.java b/src/org/apache/tools/bzip2/CBZip2InputStreamFactory.java
deleted file mode 100644 (file)
index 23923a3..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package org.apache.tools.bzip2;
-
-import java.io.IOException;
-import java.io.InputStream;
-
-public class CBZip2InputStreamFactory {
-  
-  /**
-   * jsjava addition for reflection
-   * 
-   * @param is
-   * @return BZip2 input stream
-   * @throws IOException 
-   */
-  public CBZip2InputStream getStream(InputStream is) throws IOException {
-    is.read(new byte[2], 0, 2);
-    return new CBZip2InputStream(is);
-  }
-
-}
-