Skip to content

Commit

Permalink
o Fixed typo
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-3/trunk@1070588 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
bentmann committed Feb 14, 2011
1 parent e129567 commit a0584af
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -43,7 +43,7 @@ class DefaultDependencyResolutionResult

private List<Dependency> unresolvedDependencies = new ArrayList<Dependency>();

private List<Exception> collectionErros = new ArrayList<Exception>();
private List<Exception> collectionErrors = new ArrayList<Exception>();

private Map<Dependency, List<Exception>> resolutionErrors = new IdentityHashMap<Dependency, List<Exception>>();

Expand Down Expand Up @@ -80,18 +80,18 @@ public List<Dependency> getUnresolvedDependencies()

public List<Exception> getCollectionErrors()
{
return collectionErros;
return collectionErrors;
}

public void setCollectionErrors( List<Exception> exceptions )
{
if ( exceptions != null )
{
this.collectionErros = exceptions;
this.collectionErrors = exceptions;
}
else
{
this.collectionErros = new ArrayList<Exception>();
this.collectionErrors = new ArrayList<Exception>();
}
}

Expand Down

0 comments on commit a0584af

Please sign in to comment.