[ 
https://issues.apache.org/jira/browse/MNG-6370?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Osipov closed MNG-6370.
-------------------------------
       Resolution: Fixed
    Fix Version/s:     (was: 3.5.4-candidate)
                   3.5.4

Fixed with 
[faa9ef0cd3de27d31064f88cd74140516b3569a3|https://git-wip-us.apache.org/repos/asf?p=maven.git;a=commit;h=faa9ef0cd3de27d31064f88cd74140516b3569a3].

> ConcurrencyDependencyGraph#getNumberOfBuilds() does not remove finished 
> projects from unfinished ones
> -----------------------------------------------------------------------------------------------------
>
>                 Key: MNG-6370
>                 URL: https://issues.apache.org/jira/browse/MNG-6370
>             Project: Maven
>          Issue Type: Bug
>    Affects Versions: 3.5.2, 3.5.3
>            Reporter: Sylwester Lachiewicz
>            Assignee: Michael Osipov
>            Priority: Trivial
>             Fix For: 3.5.4
>
>
> 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)

Reply via email to