Index: java/util/zip/GZIPOutputStream.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/util/zip/GZIPOutputStream.java,v retrieving revision 1.8 diff -u -b -B -r1.8 GZIPOutputStream.java --- java/util/zip/GZIPOutputStream.java 5 May 2004 13:04:15 -0000 1.8 +++ java/util/zip/GZIPOutputStream.java 16 Jul 2004 08:38:01 -0000 @@ -61,8 +61,8 @@ */ protected CRC32 crc; - /* Creates a GZIPOutputStream with the default buffer size - * + /** + * Creates a GZIPOutputStream with the default buffer size * * @param out The stream to read data (to be compressed) from * @@ -81,7 +81,6 @@ public GZIPOutputStream(OutputStream out, int size) throws IOException { super(out, new Deflater(Deflater.DEFAULT_COMPRESSION, true), size); - crc = new CRC32(); int mod_time = (int) (System.currentTimeMillis() / 1000L); byte[] gzipHeader = @@ -118,7 +117,8 @@ crc.update(buf, off, len); } - /** Writes remaining compressed output data to the output stream + /** + * Writes remaining compressed output data to the output stream * and closes it. */ public void close() throws IOException