You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2010/05/11 12:06:20 UTC

svn commit: r943070 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java

Author: bodewig
Date: Tue May 11 10:06:19 2010
New Revision: 943070

URL: http://svn.apache.org/viewvc?rev=943070&view=rev
Log:
wrong assignment after I renamed the parameter.  Unfortunately there doesn't seem to be a testcase that catches the error

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

Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java
URL: http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java?rev=943070&r1=943069&r2=943070&view=diff
==============================================================================
--- ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java (original)
+++ ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/Concat.java Tue May 11 10:06:19 2010
@@ -591,7 +591,7 @@ public class Concat extends Task impleme
      * @deprecated use #setOverwrite instead
      */
     public void setForce(boolean forceOverwrite) {
-        this.forceOverwrite = force;
+        this.forceOverwrite = forceOverwrite;
     }
 
     /**