Skip to content

Commit 6a4d182

Browse files
committedJul 25, 2020
Inherit effective max priority
1 parent e807b2b commit 6a4d182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public ThreadGroup(ThreadGroup parent, String name) {
108108
private ThreadGroup(Void unused, ThreadGroup parent, String name) {
109109
this.parent = parent;
110110
this.name = name;
111-
this.maxPriority = parent.maxPriority;
111+
this.maxPriority = parent.getMaxPriority();
112112
}
113113

114114
/*

0 commit comments

Comments
 (0)
Please sign in to comment.