InflaterInputStream.java (markSupported): Override.
authorTom Tromey <tromey@redhat.com>
Thu, 10 Feb 2005 01:39:53 +0000 (01:39 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Thu, 10 Feb 2005 01:39:53 +0000 (01:39 +0000)
* java/util/zip/InflaterInputStream.java (markSupported):
Override.
(mark, reset): Likewise.

From-SVN: r94792

libjava/ChangeLog
libjava/java/util/zip/InflaterInputStream.java

index 9a7bc27f8be16d558f4ef1429a788940bc3d369b..bfb9c002cbfd27d046f618dd8ad2d4bb3e564585 100644 (file)
@@ -1,3 +1,9 @@
+2005-02-09  Tom Tromey  <tromey@redhat.com>
+
+       * java/util/zip/InflaterInputStream.java (markSupported):
+       Override.
+       (mark, reset): Likewise.
+
 2005-02-08  Tom Tromey  <tromey@redhat.com>
 
        * java/net/URI.java (AUTHORITY_REGEXP): Handle case where user
index b2c03ced0c8c2b3d51c42d15235e389fabcca85d..7c3a211c3067026d5d862e16337d18ec1a4f6ab6 100644 (file)
@@ -1,5 +1,5 @@
 /* InflaterInputStream.java - Input stream filter for decompressing
-   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
+   Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
    Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
@@ -245,4 +245,18 @@ public class InflaterInputStream extends FilterInputStream
 
     return skipped;
  }
+
+  public boolean markSupported()
+  {
+    return false;
+  }
+
+  public void mark(int readLimit)
+  {
+  }
+
+  public void reset() throws IOException
+  {
+    throw new IOException("reset not supported");
+  }
 }