stevel@apache.org wrote:
> stevel 2005/05/02 11:02:15
>
> Modified: src/main/org/apache/tools/ant DemuxOutputStream.java
> Log:
> Move to WeakHashMap to reduce resource leakage on long-lived many-exec runs
>
> Revision Changes Path
> 1.25 +37 -37 ant/src/main/org/apache/tools/ant/DemuxOutputStream.java
>
> Index: DemuxOutputStream.java
> ===================================================================
> RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/DemuxOutputStream.java,v
> retrieving revision 1.24
> retrieving revision 1.25
> diff -u -r1.24 -r1.25
> --- DemuxOutputStream.java 9 Mar 2004 16:47:59 -0000 1.24
> +++ DemuxOutputStream.java 2 May 2005 18:02:15 -0000 1.25
> @@ -21,19 +21,18 @@
> import java.io.IOException;
> import java.io.OutputStream;
> import java.util.Hashtable;
> +import java.util.WeakHashMap;
>
> /**
> - * Logs content written by a thread and forwards the buffers onto the
> - * project object which will forward the content to the appropriate
> - * task.
> + * Logs content written by a thread and forwards the buffers onto the project object
which will forward the content to
> + * the appropriate task.
> *
I dont remember all the javadoc fixup; I just edited one bit ... I think
the IDE got over-excited or something.
Shall I roll back this commit and retry without such a big diff?
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|