This is the mail archive of the
java-patches@sources.redhat.com
mailing list for the Java project.
Patch: java.util.zip fix
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: java.util.zip fix
- From: Tom Tromey <tromey at redhat dot com>
- Date: 21 Dec 2000 11:53:03 -0700
- Reply-To: tromey at redhat dot com
I'm checking in this simple java.util.zip fix.
2000-12-21 Tom Tromey <tromey@redhat.com>
* java/util/zip/Deflater.java (update, init): Now private.
Tom
Index: java/util/zip/Deflater.java
===================================================================
RCS file: /cvs/gcc/egcs/libjava/java/util/zip/Deflater.java,v
retrieving revision 1.7
diff -u -r1.7 Deflater.java
--- Deflater.java 2000/11/17 21:42:28 1.7
+++ Deflater.java 2000/12/21 18:34:21
@@ -57,8 +57,8 @@
}
public native int deflate (byte[] buf, int off, int len);
- public native void init (int level, boolean noHeader);
- public native void update ();
+ private native void init (int level, boolean noHeader);
+ private native void update ();
public Deflater ()
{