Timer.java (finalize): Added "throws Throwable".
authorMichael Koch <konqueror@gmx.de>
Thu, 18 Sep 2003 13:09:53 +0000 (13:09 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Thu, 18 Sep 2003 13:09:53 +0000 (13:09 +0000)
2003-09-18  Michael Koch  <konqueror@gmx.de>

* java/util/Timer.java (finalize): Added "throws Throwable".

From-SVN: r71519

libjava/ChangeLog
libjava/java/util/Timer.java

index 3a1cadc927e07a9e4d8f11a0cfe6de2cb3ecff5f..fbe40721ace314309a0b98d4ee1134fcbd755cbb 100644 (file)
@@ -1,3 +1,7 @@
+2003-09-18  Michael Koch  <konqueror@gmx.de>
+
+       * java/util/Timer.java (finalize): Added "throws Throwable".
+
 2003-09-18  Michael Koch  <konqueror@gmx.de>
 
        * java/net/DatagramSocket.java
index 38c4dc09f57cc18fad0dccd4a6d2b7dc7ee47b4d..928cd9b5d50b02cdf52edd47db9731350633c287 100644 (file)
@@ -601,7 +601,7 @@ public class Timer
    * Tells the scheduler that the Timer task died
    * so there will be no more new tasks scheduled.
    */
-  protected void finalize()
+  protected void finalize() throws Throwable
   {
     queue.setNullOnEmpty(true);
   }