Commit 98cf1921 authored by tromey's avatar tromey
Browse files

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

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38420 138bc75d-0d04-0410-961f-82ee72b054a4
parent a0bb0d20
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.
......
......@@ -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 ()
{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment