Skip to content

Commit 3f8c8ff

Browse files
committedMay 24, 2022
Cleanup/review feedback
1 parent 0cd4fa5 commit 3f8c8ff

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎src/jdk.incubator.concurrent/share/classes/jdk/incubator/concurrent/StructureViolationException.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ public final class StructureViolationException extends RuntimeException {
3737
private static final long serialVersionUID = -7705327650798235468L;
3838

3939
/**
40-
* Constructs an {@code StructureViolationException} with no detail message.
40+
* Constructs a {@code StructureViolationException} with no detail message.
4141
*/
4242
public StructureViolationException() {
4343
super();
4444
}
4545

4646
/**
47-
* Constructs an {@code StructureViolationException} with the specified
47+
* Constructs a {@code StructureViolationException} with the specified
4848
* detail message.
4949
*
5050
* @param message the detail message, can be null

‎src/jdk.incubator.concurrent/share/classes/jdk/incubator/concurrent/StructuredTaskScope.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@
258258
*
259259
* <h2>Memory consistency effects</h2>
260260
*
261-
* <p>Actions in the owner thread of, or a thread contained in, the task scope prior to
261+
* <p> Actions in the owner thread of, or a thread contained in, the task scope prior to
262262
* {@linkplain #fork forking} of a {@code Callable} task
263263
* <a href="../../../../java.base/java/util/concurrent/package-summary.html#MemoryVisibility">
264264
* <i>happen-before</i></a> any actions taken by that task, which in turn <i>happen-before</i>
@@ -385,8 +385,8 @@ private void untrack(Future<?> future) {
385385
/**
386386
* Invoked when a task completes before the scope is shut down.
387387
*
388-
* <p> The {@code handleComplete} method should be thread safe. It may be
389-
* invoked by several threads at around the same.
388+
* <p> The {@code handleComplete} method should be thread safe. It may be invoked by
389+
* several threads concurrently.
390390
*
391391
* @implSpec The default implementation does nothing.
392392
*
@@ -411,7 +411,7 @@ protected void handleComplete(Future<T> future) { }
411411
* is cancelled then the {@code handleComplete} method may or may not be invoked.
412412
*
413413
* <p> If this task scope is {@linkplain #shutdown() shutdown} (or in the process
414-
* of shutting down) then {@code fork} returns a Future representing a {@link
414+
* of shutting down) then {@code fork} returns a {@code Future} representing a {@link
415415
* Future.State#CANCELLED cancelled} task that was not run.
416416
*
417417
* <p> This method may only be invoked by the task scope owner or threads contained
@@ -623,8 +623,8 @@ private boolean implShutdown() {
623623
* join} or {@code joinUntil} will return immediately.
624624
* </ul>
625625
*
626-
* <p> When this method completes then the Future objects for all tasks will be
627-
* {@linkplain Future#isDone() done}, normally or abnormally. There may still be
626+
* <p> When this method completes then the {@code Future} objects for all tasks will
627+
* be {@linkplain Future#isDone() done}, normally or abnormally. There may still be
628628
* threads that have not finished because they are executing code that did not
629629
* respond (or respond promptly) to thread interrupt. This method does not wait
630630
* for these threads. When the owner invokes the {@link #close() close} method

0 commit comments

Comments
 (0)
Please sign in to comment.