Skip to content

Commit a9068b6

Browse files
committed
Simplify parallel execution configuration docs due to JDK 17 requirement
1 parent 57c7a93 commit a9068b6

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

documentation/src/docs/asciidoc/user-guide/writing-tests.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3436,9 +3436,9 @@ executing tests will not exceed the configured parallelism. For example, when us
34363436
of the synchronization mechanisms described in the next section, the `ForkJoinPool` that
34373437
is used behind the scenes may spawn additional threads to ensure execution continues with
34383438
sufficient parallelism.
3439-
If you require such guarantees, with Java 9+, it is possible to limit the maximum number
3440-
of concurrent threads by controlling the maximum pool size of the `dynamic`, `fixed` and
3441-
`custom` strategies.
3439+
If you require such guarantees, it is possible to limit the maximum number of concurrent
3440+
threads by controlling the maximum pool size of the `dynamic`, `fixed` and `custom`
3441+
strategies.
34423442

34433443
[[writing-tests-parallel-execution-config-properties]]
34443444
===== Relevant properties

junit-jupiter-engine/src/main/java/org/junit/jupiter/engine/Constants.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,6 @@ public final class Constants {
272272
* {@value #PARALLEL_CONFIG_FIXED_PARALLELISM_PROPERTY_NAME}; defaults to
273273
* {@code 256 + fixed.parallelism}.
274274
*
275-
* <p>Note: This property only takes affect on Java 9+.
276-
*
277275
* @since 5.10
278276
*/
279277
@API(status = MAINTAINED, since = "5.13.3")
@@ -290,8 +288,6 @@ public final class Constants {
290288
*
291289
* <p>Value must either {@code true} or {@code false}; defaults to {@code true}.
292290
*
293-
* <p>Note: This property only takes affect on Java 9+.
294-
*
295291
* @since 5.10
296292
*/
297293
@API(status = MAINTAINED, since = "5.13.3")

0 commit comments

Comments
 (0)