InflaterInputStream.java: Merged class documentation with classpath.
authorMichael Koch <konqueror@gmx.de>
Sat, 24 Jan 2004 20:32:57 +0000 (20:32 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Sat, 24 Jan 2004 20:32:57 +0000 (20:32 +0000)
2004-01-24  Michael Koch  <konqueror@gmx.de>

* java/util/zip/InflaterInputStream.java: Merged class documentation
with classpath.

From-SVN: r76519

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

index 7386f1da0522eb7b696021217e15af12d83f9419..089caa912c4e53f2868a4e51ea179deaff547509 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-24  Michael Koch  <konqueror@gmx.de>
+
+       * java/util/zip/InflaterInputStream.java: Merged class documentation
+       with classpath.
+
 2004-01-21  Jakub Jelinek  <jakub@redhat.com>
 
        * include/powerpc-signal.h: Add #ifndef __powerpc64__ around the
index 597ed6bee5b2a6eedbe193bdc02ec2ab5ed52906..a8a7eeb7e1f000fc6567c1bd471148b926ea5a92 100644 (file)
@@ -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);