You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2006/01/26 06:26:16 UTC

svn commit: r372450 - in /ant/antlibs/dotnet/branches/Ant_1.6.2_compatible: CONTRIBUTORS src/main/org/apache/ant/dotnet/MSBuildTask.java

Author: bodewig
Date: Wed Jan 25 21:26:11 2006
New Revision: 372450

URL: http://svn.apache.org/viewcvs?rev=372450&view=rev
Log:
merged r372448 from trunk (fix for PR 38392)

Added:
    ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/CONTRIBUTORS
      - copied unchanged from r372448, ant/antlibs/dotnet/trunk/CONTRIBUTORS
Modified:
    ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/main/org/apache/ant/dotnet/MSBuildTask.java

Modified: ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/main/org/apache/ant/dotnet/MSBuildTask.java
URL: http://svn.apache.org/viewcvs/ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/main/org/apache/ant/dotnet/MSBuildTask.java?rev=372450&r1=372449&r2=372450&view=diff
==============================================================================
--- ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/main/org/apache/ant/dotnet/MSBuildTask.java (original)
+++ ant/antlibs/dotnet/branches/Ant_1.6.2_compatible/src/main/org/apache/ant/dotnet/MSBuildTask.java Wed Jan 25 21:26:11 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2005 The Apache Software Foundation
+ * Copyright 2003-2006 The Apache Software Foundation
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
@@ -63,6 +63,8 @@
                     (AbstractBuildTask.Target) iter.next();
                 if (!first) {
                     sb.append(";");
+                } else {
+                    first = false;
                 }
                 sb.append(t.getName());
             }
@@ -82,6 +84,8 @@
                     (AbstractBuildTask.Property) iter.next();
                 if (!first) {
                     sb.append(";");
+                } else {
+                    first = false;
                 }
                 sb.append(p.getName()).append("=").append(p.getValue());
             }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org