We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e557d32 commit 88681b1Copy full SHA for 88681b1
src/java.base/share/classes/java/lang/Thread.java
@@ -2861,8 +2861,6 @@ public static UncaughtExceptionHandler getDefaultUncaughtExceptionHandler(){
2861
* @return the uncaught exception handler for this thread
2862
*/
2863
public UncaughtExceptionHandler getUncaughtExceptionHandler() {
2864
- if (getState() == State.TERMINATED)
2865
- return null;
2866
UncaughtExceptionHandler ueh = uncaughtExceptionHandler;
2867
return (ueh != null) ? ueh : getThreadGroup();
2868
}
0 commit comments