mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
8039114: Build failure: JDK-8039108 issue
Reviewed-by: alanb
This commit is contained in:
parent
aa1964b8d6
commit
811be0cb68
1 changed files with 3 additions and 1 deletions
|
@ -253,7 +253,9 @@ public abstract class ORB extends com.sun.corba.se.org.omg.CORBA.ORB
|
|||
Method method = clazz.getMethod("getAppletContext");
|
||||
appletContext = method.invoke(javaAwtAccess);
|
||||
} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
|
||||
throw new InternalError(e);
|
||||
InternalError err = new InternalError();
|
||||
err.initCause(e);
|
||||
throw err;
|
||||
}
|
||||
|
||||
if (appletContext != null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue