Commit 082e25bf by Tom Tromey Committed by Tom Tromey

InflaterInputStream.java (markSupported): Override.

	* java/util/zip/InflaterInputStream.java (markSupported):
	Override.
	(mark, reset): Likewise.

From-SVN: r94792
parent 5cb0baad
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
......
/* 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");
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment