src/share/classes/com/sun/jmx/remote/internal/IIOPHelper.java

Print this page

        

*** 50,60 **** "com.sun.jmx.remote.protocol.iiop.IIOPProxyImpl"; private static final IIOPProxy proxy = AccessController.doPrivileged(new PrivilegedAction<IIOPProxy>() { public IIOPProxy run() { try { ! Class<?> c = Class.forName(IMPL_CLASS, true, null); return (IIOPProxy)c.newInstance(); } catch (ClassNotFoundException cnf) { return null; } catch (InstantiationException e) { throw new AssertionError(e); --- 50,60 ---- "com.sun.jmx.remote.protocol.iiop.IIOPProxyImpl"; private static final IIOPProxy proxy = AccessController.doPrivileged(new PrivilegedAction<IIOPProxy>() { public IIOPProxy run() { try { ! Class<?> c = Class.forName(IMPL_CLASS); return (IIOPProxy)c.newInstance(); } catch (ClassNotFoundException cnf) { return null; } catch (InstantiationException e) { throw new AssertionError(e);