Skip to content

Commit 88681b1

Browse files
committedJan 20, 2022
Remove state check that is no longer needed
1 parent e557d32 commit 88681b1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

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

-2
Original file line numberDiff line numberDiff line change
@@ -2861,8 +2861,6 @@ public static UncaughtExceptionHandler getDefaultUncaughtExceptionHandler(){
28612861
* @return the uncaught exception handler for this thread
28622862
*/
28632863
public UncaughtExceptionHandler getUncaughtExceptionHandler() {
2864-
if (getState() == State.TERMINATED)
2865-
return null;
28662864
UncaughtExceptionHandler ueh = uncaughtExceptionHandler;
28672865
return (ueh != null) ? ueh : getThreadGroup();
28682866
}

0 commit comments

Comments
 (0)
Please sign in to comment.