diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-24 20:32:57 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-24 20:32:57 +0000 |
commit | ebc1f09c6376c84cc6b98238916e9f7ed16c767d (patch) | |
tree | 6a68399ba25e3e52f8e1d4f728fa4fbc0e9210a4 /libjava/java/util | |
parent | 574713cbc68ef2dc37d944cce438aad303c0a1d3 (diff) | |
download | ppe42-gcc-ebc1f09c6376c84cc6b98238916e9f7ed16c767d.tar.gz ppe42-gcc-ebc1f09c6376c84cc6b98238916e9f7ed16c767d.zip |
2004-01-24 Michael Koch <konqueror@gmx.de>
* java/util/zip/InflaterInputStream.java: Merged class documentation
with classpath.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76519 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/util')
-rw-r--r-- | libjava/java/util/zip/InflaterInputStream.java | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/libjava/java/util/zip/InflaterInputStream.java b/libjava/java/util/zip/InflaterInputStream.java index 597ed6bee5b..a8a7eeb7e1f 100644 --- a/libjava/java/util/zip/InflaterInputStream.java +++ b/libjava/java/util/zip/InflaterInputStream.java @@ -1,5 +1,5 @@ /* InflaterInputStream.java - Input stream filter for decompressing - Copyright (C) 1999, 2000, 2002, 2003 Free Software Foundation, Inc. + Copyright (C) 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,17 +42,20 @@ import java.io.InputStream; import java.io.IOException; /** + * This filter stream is used to decompress data compressed in the "deflate" + * format. The "deflate" format is described in RFC 1951. + * + * This stream may form the basis for other decompression filters, such + * as the <code>GZIPInputStream</code>. + * + * @author John Leuner * @author Tom Tromey - * @date May 17, 1999 + * @since 1.1 */ - -/* Written using on-line Java Platform 1.2 API Specification - * and JCL book. - * Believed complete and correct. - */ - public class InflaterInputStream extends FilterInputStream { + + protected void fill () throws IOException { len = in.read(buf, 0, buf.length); |