* java/util/zip/GZIPOutputStream.java (write(byte[])): New
method.
From-SVN: r27031
1999-05-19 Tom Tromey <tromey@cygnus.com>
+ * java/util/zip/GZIPOutputStream.java (write(byte[])): New
+ method.
+
* java/util/zip/natInflater.cc (inflate): Cast `len' to unsigned.
Include <stdlib.h>.
* java/util/zip/natDeflater.cc (deflate): Cast `len' to unsigned.
crc = new CRC32 ();
}
+ public synchronized void write (byte[] buf) throws IOException
+ {
+ write (buf, 0, buf.length);
+ }
+
public synchronized void write (byte[] buf, int off, int len)
throws IOException
{