* java/util/zip/Deflater.java (update, init): Now private.

From-SVN: r38420
This commit is contained in:
Tom Tromey 2000-12-21 18:39:19 +00:00 committed by Tom Tromey
parent 2130b7fb30
commit 465c091ce9
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2000-12-21 Tom Tromey <tromey@redhat.com>
* java/util/zip/Deflater.java (update, init): Now private.
2000-12-21 Bryce McKinlay <bryce@albatross.co.nz>
* java/util/BasicMapEntry.java: Re-added.

View File

@ -57,8 +57,8 @@ public class Deflater
}
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 ()
{