o Fixed error message

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@940810 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2010-05-04 11:41:32 +00:00
parent 90027ef75a
commit f9002b1821
1 changed files with 2 additions and 2 deletions

View File

@ -87,10 +87,10 @@ public class PluginVersionResolutionException
if ( remoteRepositories != null && !remoteRepositories.isEmpty() )
{
repos += ", ";
for ( ArtifactRepository repository : remoteRepositories )
{
repos += ", ";
if ( repository != null )
{
repos += repository.getId() + " (" + repository.getUrl() + ")";