Re: RFR: JDK-8263545: Convert jpackage to use Stream.toList() [v3]

2021-03-19 Thread Ian Graves
On Fri, 19 Mar 2021 01:17:34 GMT, Alexey Semenyuk wrote: >> Ian Graves has updated the pull request with a new target base due to a >> merge or a rebase. The pull request now contains two commits: >> >> - Clarifying type argument and shorting a toArray invocation >> - Converting jpackage to

Re: RFR: JDK-8263545: Convert jpackage to use Stream.toList() [v3]

2021-03-18 Thread Alexey Semenyuk
On Tue, 16 Mar 2021 04:55:23 GMT, Ian Graves wrote: >> This converts jpackage to use `Stream.toList()` instead of >> `Stream.collect(Collectors.toList())`. One piece of code was modified to not >> mutate a list in addition to one test that used a mutating sort on a list. >> The rest of the

Re: RFR: JDK-8263545: Convert jpackage to use Stream.toList() [v3]

2021-03-15 Thread Ian Graves
> This converts jpackage to use `Stream.toList()` instead of > `Stream.collect(Collectors.toList())`. One piece of code was modified to not > mutate a list in addition to one test that used a mutating sort on a list. > The rest of the changes are simple substitutions. Ian Graves has updated