Skip to content

Commit a92c78a

Browse files
committed
Align deprecated-since with main line
1 parent e2a8737 commit a92c78a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/java.base/share/classes/java/lang/ThreadGroup.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
/**
4040
* A thread group represents a set of threads. In addition, a thread
41-
* group can also include other thread groups. The thread groups form
41+
* group can also include other thread groups. The thread groups form@
4242
* a tree in which every thread group except the initial thread group
4343
* has a parent.
4444
*
@@ -200,7 +200,7 @@ public final int getMaxPriority() {
200200
* when its last thread terminates. The concept of daemon
201201
* thread group no longer exists.
202202
*/
203-
@Deprecated(since="99", forRemoval=true)
203+
@Deprecated(since="16", forRemoval=true)
204204
public final boolean isDaemon() {
205205
return false;
206206
}
@@ -216,7 +216,7 @@ public final boolean isDaemon() {
216216
*
217217
* @since 1.1
218218
*/
219-
@Deprecated(since="99", forRemoval=true)
219+
@Deprecated(since="16", forRemoval=true)
220220
public boolean isDestroyed() {
221221
return false;
222222
}
@@ -232,7 +232,7 @@ public boolean isDestroyed() {
232232
* The concept of daemon thread group and the concept of a
233233
* destroyed thread group no longer exists.
234234
*/
235-
@Deprecated(since="99", forRemoval=true)
235+
@Deprecated(since="16", forRemoval=true)
236236
public final void setDaemon(boolean daemon) {
237237
checkAccess();
238238
}
@@ -579,7 +579,7 @@ public final void resume() {
579579
* thread group. The ability to destroy a thread group no
580580
* longer exists.
581581
*/
582-
@Deprecated(since="99", forRemoval=true)
582+
@Deprecated(since="16", forRemoval=true)
583583
public final void destroy() {
584584
}
585585

0 commit comments

Comments
 (0)