[
https://issues.apache.org/jira/browse/MNG-6370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16386929#comment-16386929
]
Michael Osipov commented on MNG-6370:
-------------------------------------
At least all ITs pass here.
> 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
> Priority: Trivial
>
> 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)