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

Print this page

        

*** 453,463 **** * generator implementations. */ BatchEnvironment env; try { Constructor<? extends BatchEnvironment> cons = ! 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); --- 453,463 ---- * generator implementations. */ BatchEnvironment env; try { Constructor<? extends BatchEnvironment> cons = ! 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);