Sylwester Lachiewicz created MNG-6370:
-----------------------------------------
Summary: Actual argument type 'HashSet<MavenProject>' is
incompatible with expected argument type 'MavenProject'.
Key: MNG-6370
URL: https://issues.apache.org/jira/browse/MNG-6370
Project: Maven
Issue Type: Bug
Reporter: Sylwester Lachiewicz
Fix _ConcurrencyDependencyGraph.getUnfinishedProjects_
{code:java}
private final HashSet<MavenProject> finishedProjects = new HashSet<>();
/**
* @return set of projects that have yet to be processed successfully by the
build.
*/
public Set<MavenProject> getUnfinishedProjects()
{
Set<MavenProject> unfinished = new HashSet<>( projectBuilds.getProjects() );
unfinished.remove( finishedProjects );
return unfinished;
}{code}
replace _remove()_ with _removeAll()_
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)