Skip to content

Commit 2af260f

Browse files
committedApr 12, 2022
Rename heading in Thread javadoc
1 parent 600508e commit 2af260f

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed
 

‎src/java.base/share/classes/java/lang/Thread.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
* ThreadFactory factory = Thread.ofVirtual().factory();
157157
* }
158158
*
159-
* <h2><a id="inheritance">Inheritance</a></h2>
159+
* <h2><a id="inheritance">Inheritance when creating threads</a></h2>
160160
* A {@code Thread} inherits its initial values of {@linkplain InheritableThreadLocal
161161
* inheritable-thread-local} variables (including the context class loader) from
162162
* the parent thread values at the time that the child {@code Thread} is created.
@@ -905,7 +905,7 @@ public sealed interface Builder
905905
* method must be invoked to schedule the thread to execute.
906906
* @param task the object to run when the thread executes
907907
* @return a new unstarted Thread
908-
* @see <a href="Thread.html#inheritance">Inheritance</a>
908+
* @see <a href="Thread.html#inheritance">Inheritance when creating threads</a>
909909
*/
910910
Thread unstarted(Runnable task);
911911

@@ -915,7 +915,7 @@ public sealed interface Builder
915915
*
916916
* @param task the object to run when the thread executes
917917
* @return a new started Thread
918-
* @see <a href="Thread.html#inheritance">Inheritance</a>
918+
* @see <a href="Thread.html#inheritance">Inheritance when creating threads</a>
919919
*/
920920
Thread start(Runnable task);
921921

@@ -1093,7 +1093,7 @@ private static String checkName(String name) {
10931093
* <p> This constructor is only useful when extending {@code Thread} to
10941094
* override the {@link #run()} method.
10951095
*
1096-
* @see <a href="#inheritance">Inheritance</a>
1096+
* @see <a href="#inheritance">Inheritance when creating threads</a>
10971097
*/
10981098
public Thread() {
10991099
this(null, genThreadName(), 0, null, 0, null);
@@ -1114,7 +1114,7 @@ public Thread() {
11141114
* is started. If {@code null}, this classes {@code run} method does
11151115
* nothing.
11161116
*
1117-
* @see <a href="#inheritance">Inheritance</a>
1117+
* @see <a href="#inheritance">Inheritance when creating threads</a>
11181118
*/
11191119
public Thread(Runnable task) {
11201120
this(null, genThreadName(), 0, task, 0, null);
@@ -1156,7 +1156,7 @@ public Thread(Runnable task) {
11561156
* if the current thread cannot create a thread in the specified
11571157
* thread group
11581158
*
1159-
* @see <a href="#inheritance">Inheritance</a>
1159+
* @see <a href="#inheritance">Inheritance when creating threads</a>
11601160
*/
11611161
public Thread(ThreadGroup group, Runnable task) {
11621162
this(group, genThreadName(), 0, task, 0, null);
@@ -1173,7 +1173,7 @@ public Thread(ThreadGroup group, Runnable task) {
11731173
* @param name
11741174
* the name of the new thread
11751175
*
1176-
* @see <a href="#inheritance">Inheritance</a>
1176+
* @see <a href="#inheritance">Inheritance when creating threads</a>
11771177
*/
11781178
public Thread(String name) {
11791179
this(null, checkName(name), 0, null, 0, null);
@@ -1202,7 +1202,7 @@ public Thread(String name) {
12021202
* if the current thread cannot create a thread in the specified
12031203
* thread group
12041204
*
1205-
* @see <a href="#inheritance">Inheritance</a>
1205+
* @see <a href="#inheritance">Inheritance when creating threads</a>
12061206
*/
12071207
public Thread(ThreadGroup group, String name) {
12081208
this(group, checkName(name), 0, null, 0, null);
@@ -1224,7 +1224,7 @@ public Thread(ThreadGroup group, String name) {
12241224
* @param name
12251225
* the name of the new thread
12261226
*
1227-
* @see <a href="#inheritance">Inheritance</a>
1227+
* @see <a href="#inheritance">Inheritance when creating threads</a>
12281228
*/
12291229
public Thread(Runnable task, String name) {
12301230
this(null, checkName(name), 0, task, 0, null);
@@ -1278,7 +1278,7 @@ public Thread(Runnable task, String name) {
12781278
* if the current thread cannot create a thread in the specified
12791279
* thread group or cannot override the context class loader methods.
12801280
*
1281-
* @see <a href="#inheritance">Inheritance</a>
1281+
* @see <a href="#inheritance">Inheritance when creating threads</a>
12821282
*/
12831283
public Thread(ThreadGroup group, Runnable task, String name) {
12841284
this(group, checkName(name), 0, task, 0, null);
@@ -1360,7 +1360,7 @@ public Thread(ThreadGroup group, Runnable task, String name) {
13601360
* thread group
13611361
*
13621362
* @since 1.4
1363-
* @see <a href="#inheritance">Inheritance</a>
1363+
* @see <a href="#inheritance">Inheritance when creating threads</a>
13641364
*/
13651365
public Thread(ThreadGroup group, Runnable task, String name, long stackSize) {
13661366
this(group, checkName(name), 0, task, stackSize, null);
@@ -1425,7 +1425,7 @@ public Thread(ThreadGroup group, Runnable task, String name, long stackSize) {
14251425
* thread group
14261426
*
14271427
* @since 9
1428-
* @see <a href="#inheritance">Inheritance</a>
1428+
* @see <a href="#inheritance">Inheritance when creating threads</a>
14291429
*/
14301430
public Thread(ThreadGroup group, Runnable task, String name,
14311431
long stackSize, boolean inheritInheritableThreadLocals) {
@@ -1443,7 +1443,7 @@ public Thread(ThreadGroup group, Runnable task, String name,
14431443
* @param task the object to run when the thread executes
14441444
* @return a new, and started, virtual thread
14451445
* @throws UnsupportedOperationException if preview features are not enabled
1446-
* @see <a href="#inheritance">Inheritance</a>
1446+
* @see <a href="#inheritance">Inheritance when creating threads</a>
14471447
* @since 19
14481448
*/
14491449
@PreviewFeature(feature = PreviewFeature.Feature.VIRTUAL_THREADS)

‎src/java.base/share/classes/java/util/concurrent/ThreadFactory.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ public interface ThreadFactory {
6565
* @return constructed thread, or {@code null} if the request to
6666
* create a thread is rejected
6767
*
68-
* @see <a href="../../lang/Thread.html#inheritance">Inheritance</a>
68+
* @see <a href="../../lang/Thread.html#inheritance">Inheritance when
69+
* creating threads</a>
6970
*/
7071
Thread newThread(Runnable r);
7172
}

0 commit comments

Comments
 (0)
Please sign in to comment.