* java/util/Timer.java
(run): Stop the queue if a task throws an exception.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97411
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-04-01 Jeroen Frijters <jeroen@frijters.net>
+
+ * java/util/Timer.java
+ (run): Stop the queue if a task throws an exception.
+
2005-03-31 Thomas Fitzsimmons <fitzsim@redhat.com>
* javax/swing/text/JTextComponent.java (viewToModel): New method.
throw death;
}
catch (Throwable t)
- {
- /* ignore all errors */
+ {
+ // If an exception escapes, the Timer becomes invalid.
+ queue.stop();
}
}