* java/util/zip/Deflater.java (update, init): Now private.
From-SVN: r38420
This commit is contained in:
parent
2130b7fb30
commit
465c091ce9
2 changed files with 6 additions and 2 deletions
|
@ -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>
|
2000-12-21 Bryce McKinlay <bryce@albatross.co.nz>
|
||||||
|
|
||||||
* java/util/BasicMapEntry.java: Re-added.
|
* 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 int deflate (byte[] buf, int off, int len);
|
||||||
public native void init (int level, boolean noHeader);
|
private native void init (int level, boolean noHeader);
|
||||||
public native void update ();
|
private native void update ();
|
||||||
|
|
||||||
public Deflater ()
|
public Deflater ()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue