InflaterInputStream.java: New stub class.
authorPer Bothner <bothner@gcc.gnu.org>
Thu, 6 May 1999 00:15:43 +0000 (17:15 -0700)
committerPer Bothner <bothner@gcc.gnu.org>
Thu, 6 May 1999 00:15:43 +0000 (17:15 -0700)
u
* InflaterInputStream.java:  New stub class.
* ZipInputStream.java:  New class.  Partly works.
* ZipConstants.java:  Add two (internal) constants.
* ZipEntry.java (timeFromDOS):  New static (non-public) method.
* ZipFile.java:  Make it mostly work, except for compression.
* ZipOutputStream.java:  Start implementation.

From-SVN: r26792

libjava/java/util/zip/InflaterInputStream.java [new file with mode: 0644]

diff --git a/libjava/java/util/zip/InflaterInputStream.java b/libjava/java/util/zip/InflaterInputStream.java
new file mode 100644 (file)
index 0000000..e064c98
--- /dev/null
@@ -0,0 +1,12 @@
+package java.util.zip;
+import java.io.*;
+
+/** Placefolder - very incomplete. */
+
+public class InflaterInputStream extends FilterInputStream
+{
+  public InflaterInputStream(InputStream in)
+  {
+    super(in);
+  }
+}