OSDN Git Service

* All files: Updated copyright to reflect Cygnus purchase.
[pf3gnuchains/gcc-fork.git] / libjava / java / util / zip / Deflater.java
index 70855c5..d0dbfb6 100644 (file)
@@ -1,6 +1,6 @@
 // Deflater.java - Compress a data stream.
 
-/* Copyright (C) 1999  Cygnus Solutions
+/* Copyright (C) 1999  Red Hat, Inc.
 
    This file is part of libgcj.
 
@@ -63,7 +63,7 @@ public class Deflater
 
   public native void end ();
 
-  public void finalize ()
+  protected void finalize ()
   {
     end ();
   }
@@ -124,9 +124,6 @@ public class Deflater
   // True if finished.
   private boolean is_finished;
 
-  // Total number of bytes made available at last setInput.
-  private int last_input_count;
-
   // `Flush' flag to pass to next call to deflate.
   private int flush_flag;
 }