fix error message

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@162977 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2004-08-15 04:30:31 +00:00
parent bd9992eb74
commit 0f706f5102
1 changed files with 4 additions and 0 deletions

View File

@ -77,6 +77,10 @@ public class DefaultArtifactResolver
ArtifactRepository remoteRepository = (ArtifactRepository) i.next();
sb.append( remoteRepository.getUrl() );
if ( i.hasNext() )
{
sb.append( ", " );
}
}
return sb.toString();