Author: gscokart
Date: Thu Oct 29 08:40:26 2009
New Revision: 830859

URL: http://svn.apache.org/viewvc?rev=830859&view=rev
Log:
Mark field final (not strictly required, but looks better)

Modified:
    ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Redirector.java

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Redirector.java
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Redirector.java?rev=830859&r1=830858&r2=830859&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Redirector.java 
(original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Redirector.java Thu 
Oct 29 08:40:26 2009
@@ -176,7 +176,7 @@
     private boolean appendProperties = true;
 
     /** The thread group used for starting <code>StreamPumper</code> threads */
-    private ThreadGroup threadGroup = new ThreadGroup("redirector");
+    private final ThreadGroup threadGroup = new ThreadGroup("redirector");
 
     /** whether to log the inputstring */
     private boolean logInputString = true;


Reply via email to