Proxy.java, [...]: Don't catch java.lang.ThreadDeath.
2005-02-22 Jeroen Frijters <jeroen@frijters.net> * java/lang/reflect/Proxy.java, java/net/URL.java, java/security/SecureRandom.java, java/util/Timer.java, java/util/prefs/AbstractPreferences.java: Don't catch java.lang.ThreadDeath. From-SVN: r95415
This commit is contained in:
committed by
Michael Koch
parent
19b3ffbcaf
commit
b5abfc2344
@@ -1347,7 +1347,7 @@ public class Proxy implements Serializable
|
||||
|
||||
return clazz;
|
||||
}
|
||||
catch (Throwable e)
|
||||
catch (Exception e)
|
||||
{
|
||||
// assert false;
|
||||
throw (Error) new InternalError("Unexpected: " + e).initCause(e);
|
||||
|
||||
Reference in New Issue
Block a user