[
https://issues.apache.org/jira/browse/MNG-6370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16387030#comment-16387030
]
Sylwester Lachiewicz commented on MNG-6370:
-------------------------------------------
No, will just return not modified array. As far i can check there was not calls
to getUnfinishedProject() in Maven sources.
> 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
> Affects Versions: 3.5.2, 3.5.3
> 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)