jdk/src/share/classes/java/lang/reflect/Constructor.java
changeset 7803 56bc97d69d93
parent 6534 ad71f5af4022
child 7816 55a18147b4bf
equal deleted inserted replaced
7802:74f2ee2b62ba 7803:56bc97d69d93
   142         // method in the VM. (All of this contortion is only necessary
   142         // method in the VM. (All of this contortion is only necessary
   143         // because of the "accessibility" bit in AccessibleObject,
   143         // because of the "accessibility" bit in AccessibleObject,
   144         // which implicitly requires that new java.lang.reflect
   144         // which implicitly requires that new java.lang.reflect
   145         // objects be fabricated for each reflective call on Class
   145         // objects be fabricated for each reflective call on Class
   146         // objects.)
   146         // objects.)
   147         Constructor<T> res = new Constructor<T>(clazz,
   147         Constructor<T> res = new Constructor<>(clazz,
   148                                                 parameterTypes,
   148                                                 parameterTypes,
   149                                                 exceptionTypes, modifiers, slot,
   149                                                 exceptionTypes, modifiers, slot,
   150                                                 signature,
   150                                                 signature,
   151                                                 annotations,
   151                                                 annotations,
   152                                                 parameterAnnotations);
   152                                                 parameterAnnotations);