Index: java/util/zip/Deflater.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/zip/Deflater.java,v retrieving revision 1.3 diff -u -b -B -r1.3 Deflater.java --- java/util/zip/Deflater.java 22 Jan 2002 22:27:02 -0000 1.3 +++ java/util/zip/Deflater.java 4 Feb 2004 07:52:16 -0000 @@ -1,5 +1,5 @@ -/* java.util.zip.Deflater - Copyright (C) 2001 Free Software Foundation, Inc. +/* Deflater.java - Compress a data stream + Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -46,7 +46,7 @@ * to the split of deflate and setInput. * * @author Jochen Hoenicke - * @date Jan 5, 2000 + * @author Tom Tromey */ public class Deflater { Index: java/util/zip/DeflaterOutputStream.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/zip/DeflaterOutputStream.java,v retrieving revision 1.4 diff -u -b -B -r1.4 DeflaterOutputStream.java --- java/util/zip/DeflaterOutputStream.java 21 May 2003 12:20:58 -0000 1.4 +++ java/util/zip/DeflaterOutputStream.java 4 Feb 2004 07:52:16 -0000 @@ -1,5 +1,5 @@ -/* java.util.zip.DeflaterOutputStream - Copyright (C) 2001 Free Software Foundation, Inc. +/* DeflaterOutputStream.java - Output filter for compressing. + Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. Index: java/util/zip/GZIPInputStream.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/zip/GZIPInputStream.java,v retrieving revision 1.6 diff -u -b -B -r1.6 GZIPInputStream.java --- java/util/zip/GZIPInputStream.java 21 May 2003 12:20:58 -0000 1.6 +++ java/util/zip/GZIPInputStream.java 4 Feb 2004 07:52:16 -0000 @@ -1,5 +1,5 @@ -/* java.util.zip.GZIPInputStream - Copyright (C) 2001 Free Software Foundation, Inc. +/* GZIPInputStream.java - Input filter for reading gzip file + Copyright (C) 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -47,6 +46,7 @@ * The "GZIP" format is described in RFC 1952. * * @author John Leuner + * @author Tom Tromey * @since JDK 1.1 */ public class GZIPInputStream @@ -126,12 +117,10 @@ * * @param in The stream to read compressed data from * (in GZIP format). - * * @param size The size of the buffer to use. * * @throws IOException if an error occurs during an I/O operation. - * - * @throws java.lang.IllegalArgumentException if size + * @throws IllegalArgumentException if size * is less than or equal to 0. */ public GZIPInputStream(InputStream in, int size) @@ -150,6 +138,7 @@ public void close() throws IOException { + // Nothing to do here. super.close(); } @@ -162,10 +150,8 @@ * * @param buf the buffer into which the uncompressed data will * be stored. - * * @param offset the offset indicating where in buf * the uncompressed data should be placed. - * * @param len the number of uncompressed bytes to be read. */ public int read(byte[] buf, int offset, int len) throws IOException Index: java/util/zip/GZIPOutputStream.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/zip/GZIPOutputStream.java,v retrieving revision 1.5 diff -u -b -B -r1.5 GZIPOutputStream.java --- java/util/zip/GZIPOutputStream.java 21 May 2003 12:20:58 -0000 1.5 +++ java/util/zip/GZIPOutputStream.java 4 Feb 2004 07:52:16 -0000 @@ -1,4 +1,4 @@ -/* java.util.zip.GZIPOutputStream +/* GZIPOutputStream.java - Create a file in gzip format Copyright (C) 2001 Free Software Foundation, Inc. This file is part of GNU Classpath.