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: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]