jdk/src/share/classes/sun/reflect/MethodAccessorGenerator.java
changeset 10355 a976ff46116b
parent 10342 ca0984bc9d32
child 14342 8435a30053c1
equal deleted inserted replaced
10354:5257798c26d0 10355:a976ff46116b
   399                                 (generatedName,
   399                                 (generatedName,
   400                                  bytes,
   400                                  bytes,
   401                                  0,
   401                                  0,
   402                                  bytes.length,
   402                                  bytes.length,
   403                                  declaringClass.getClassLoader()).newInstance();
   403                                  declaringClass.getClassLoader()).newInstance();
   404                         } catch (InstantiationException |
   404                         } catch (InstantiationException | IllegalAccessException e) {
   405                                  IllegalAccessException e) {
   405                             throw new InternalError(e);
   406                             throw (InternalError)
       
   407                                 new InternalError().initCause(e);
       
   408                         }
   406                         }
   409                     }
   407                     }
   410                 });
   408                 });
   411     }
   409     }
   412 
   410