[jdk11u-dev] Withdrawn: 8331142: Add test for number of loader threads in BasicDirectoryModel

Andrew Lu andrewlu at openjdk.org
Wed Jun 19 09:20:13 UTC 2024


On Tue, 18 Jun 2024 08:03:47 GMT, Andrew Lu <andrewlu at openjdk.org> wrote:

> I backport this for parity with 11.0.25-oracle.
> The test is limit to Windows, so backport with JDK-8331495 together, also backport with the new issue JDK-8331999
> 
> threads.addAll(Stream.generate(() -> new Thread(new Scanner(fc)))
>                                  .limit(NUMBER_OF_THREADS)
>                                  .toList());
> change to as not supported in 11.
> 
> threads.addAll(Stream.generate(() -> new Thread(new Scanner(fc)))
>                                  .limit(NUMBER_OF_THREADS)
>                                  .collect(Collectors.toList()));

This pull request has been closed without being integrated.

-------------

PR: https://git.openjdk.org/jdk11u-dev/pull/2789


More information about the jdk-updates-dev mailing list