Hi,
-------- Original-Nachricht --------
Datum: Thu, 11 Jan 2007 19:13:30 +0000
Von: "Peter Reilly" <[EMAIL PROTECTED]>
An: "Ant Users List" <[email protected]>
Betreff: Re: ConcurrentModificationException
> Looking at the code and the stack error, the following patch may
> fix the problem:
> Index: src/main/org/apache/tools/ant/PropertyHelper.java
> ===================================================================
> --- src/main/org/apache/tools/ant/PropertyHelper.java (revision 495336)
> +++ src/main/org/apache/tools/ant/PropertyHelper.java (working copy)
> @@ -470,7 +470,9 @@
> * (including user properties).
> */
> public Hashtable getProperties() {
> - return new Hashtable(properties);
> + synchronized (properties) {
> + return new Hashtable(properties);
> + }
> // There is a better way to save the context. This shouldn't
> // delegate to next, it's for backward compatibility only.
> }
I'll give it a try. Thanks for the fast response.
Best regards, Thomas
--
Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]