From 9d30d3cd2ada1f4ee9800274f0dbb4d898a73344 Mon Sep 17 00:00:00 2001 From: Jacobus Martinus Kruithof Date: Sun, 16 Sep 2007 21:08:50 +0000 Subject: [PATCH] Improved InterruptException handling, especially from Parallel task. Should also solve Pr 42924. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@576177 13f79535-47bb-0310-9956-ffa450edef68 --- WHATSNEW | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/WHATSNEW b/WHATSNEW index 9b6a9862c..cfcb4272c 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -4,6 +4,11 @@ Changes from Ant 1.7.x TO current SVN version Changes that could break older environments: ------------------------------------------- +* Improved handling of InterruptException (lets suppose someone/thing is + trying to kill the thread when we receive an InterruptException), + when an InterruptException is received, we do not wait anymore in a while + loop till the end time has been reached. Bugzilla report 42924. + * Refactor PropertyHelper and introspection APIs to make extension more granular and support setting task/type attribute values to objects decoded by custom PropertyEvaluator delegates. Also add