src/share/classes/sun/rmi/rmic/newrmic/Main.java

Print this page

        

@@ -453,11 +453,11 @@
          * generator implementations.
          */
         BatchEnvironment env;
         try {
             Constructor<? extends BatchEnvironment> cons =
-                batch.envClass.getConstructor(new Class<?>[] { RootDoc.class });
+                batch.envClass.getConstructor(new Class[] { RootDoc.class });
             env = cons.newInstance(rootDoc);
         } catch (NoSuchMethodException e) {
             throw new AssertionError(e);
         } catch (IllegalAccessException e) {
             throw new AssertionError(e);