Skip to content

Commit f5c37af

Browse files
committedJan 27, 2020
Missing @throws SecurityException from build and start methods
1 parent 61b061f commit f5c37af

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed
 

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

+5
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,8 @@ public interface Builder {
738738
*
739739
* @return a new unstarted Thread
740740
* @throws IllegalStateException if the task object to run object has not been set
741+
* @throws SecurityException if a thread group has been set and the current thread
742+
* cannot create a thread in that thread group
741743
*/
742744
Thread build();
743745

@@ -760,6 +762,9 @@ public interface Builder {
760762
* start} method to start it.
761763
*
762764
* @return The started thread
765+
* @throws IllegalStateException if the task object to run object has not been set
766+
* @throws SecurityException if a thread group has been set and the current thread
767+
* cannot create a thread in that thread group
763768
*/
764769
default Thread start() {
765770
Thread thread = build();

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
*/
5555
public class ThreadGroup implements Thread.UncaughtExceptionHandler {
5656
private final ThreadGroup parent;
57-
private final boolean isLightweight;
57+
private final boolean virtual;
5858
String name;
5959
int maxPriority;
6060
boolean destroyed;
@@ -75,7 +75,7 @@ private ThreadGroup() { // called from C code
7575
this.name = "system";
7676
this.maxPriority = Thread.MAX_PRIORITY;
7777
this.parent = null;
78-
this.isLightweight = false;
78+
this.virtual = false;
7979
}
8080

8181
/**
@@ -116,16 +116,16 @@ public ThreadGroup(ThreadGroup parent, String name) {
116116
this(checkParentAccess(parent), parent, name, false);
117117
}
118118

119-
ThreadGroup(ThreadGroup parent, String name, boolean isLightweight) {
120-
this(null, parent, name, isLightweight);
119+
ThreadGroup(ThreadGroup parent, String name, boolean virtual) {
120+
this(null, parent, name, virtual);
121121
}
122122

123-
private ThreadGroup(Void unused, ThreadGroup parent, String name, boolean isLightweight) {
123+
private ThreadGroup(Void unused, ThreadGroup parent, String name, boolean virtual) {
124124
this.name = name;
125125
this.maxPriority = parent.maxPriority;
126126
this.daemon = parent.daemon;
127127
this.parent = parent;
128-
this.isLightweight = isLightweight;
128+
this.virtual = virtual;
129129
parent.add(this);
130130
}
131131

@@ -264,7 +264,7 @@ public final void setMaxPriority(int pri) {
264264
ThreadGroup[] groupsSnapshot;
265265
synchronized (this) {
266266
checkAccess();
267-
if (isLightweight || (pri < Thread.MIN_PRIORITY || pri > Thread.MAX_PRIORITY)) {
267+
if (virtual || (pri < Thread.MIN_PRIORITY || pri > Thread.MAX_PRIORITY)) {
268268
return;
269269
}
270270
maxPriority = (parent != null) ? Math.min(pri, parent.maxPriority) : pri;
@@ -766,7 +766,7 @@ public final void resume() {
766766
* called with no arguments; this may result in a security exception.
767767
*
768768
* @throws UnsupportedOperationException if this is the thread group
769-
* for lightweight threads
769+
* for virtual threads
770770
* @throws IllegalThreadStateException if the thread group is not
771771
* empty or if the thread group has already been destroyed.
772772
* @throws SecurityException if the current thread cannot modify this
@@ -775,7 +775,7 @@ public final void resume() {
775775
* @since 1.0
776776
*/
777777
public final void destroy() {
778-
if (isLightweight)
778+
if (virtual)
779779
throw new UnsupportedOperationException();
780780
int ngroupsSnapshot;
781781
ThreadGroup[] groupsSnapshot;
@@ -1082,7 +1082,7 @@ public void uncaughtException(Thread t, Throwable e) {
10821082
*/
10831083
@Deprecated(since="1.2", forRemoval=true)
10841084
public boolean allowThreadSuspension(boolean b) {
1085-
return (isLightweight) ? !b : true;
1085+
return (virtual) ? !b : true;
10861086
}
10871087

10881088
/**

0 commit comments

Comments
 (0)
Please sign in to comment.