]> gcc.gnu.org Git - gcc.git/commitdiff
* java/util/zip/Deflater.java (update, init): Now private.
authorTom Tromey <tromey@redhat.com>
Thu, 21 Dec 2000 18:39:19 +0000 (18:39 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Thu, 21 Dec 2000 18:39:19 +0000 (18:39 +0000)
From-SVN: r38420

libjava/ChangeLog
libjava/java/util/zip/Deflater.java

index ceffba55ac01f73cb226b0b32ec185549d15f3a2..ad349506f80957e61194b2ae4a2d0cd3ca043195 100644 (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.
index 63208324a200f7fb694e156bb23e75be62829a77..8f3e92469a7e9cd915637c2fcdca326915f6a265 100644 (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 ()
   {
This page took 0.072365 seconds and 5 git commands to generate.