o Fixed exception message

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@883520 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benjamin Bentmann 2009-11-23 22:14:10 +00:00
parent ba0fef4676
commit a8f2a0dd49
1 changed files with 2 additions and 2 deletions

View File

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