From: Michael Koch Date: Thu, 18 Sep 2003 13:09:53 +0000 (+0000) Subject: Timer.java (finalize): Added "throws Throwable". X-Git-Tag: releases/gcc-3.4.0~3670 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f27fd64eb98bd89fc1e863060d2806a4010c8113;p=thirdparty%2Fgcc.git Timer.java (finalize): Added "throws Throwable". 2003-09-18 Michael Koch * java/util/Timer.java (finalize): Added "throws Throwable". From-SVN: r71519 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 3a1cadc927e0..fbe40721ace3 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,7 @@ +2003-09-18 Michael Koch + + * java/util/Timer.java (finalize): Added "throws Throwable". + 2003-09-18 Michael Koch * java/net/DatagramSocket.java diff --git a/libjava/java/util/Timer.java b/libjava/java/util/Timer.java index 38c4dc09f57c..928cd9b5d50b 100644 --- a/libjava/java/util/Timer.java +++ b/libjava/java/util/Timer.java @@ -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); }