jdk/src/share/classes/javax/management/remote/rmi/RMIConnectorServer.java
changeset 526 61ba2d5ea9da
parent 2 90ce3da70b43
child 715 f16baef3a20e
equal deleted inserted replaced
497:a39d2c31df28 526:61ba2d5ea9da
   363                 (String) attributes.get("jmx.remote.x.access.file");
   363                 (String) attributes.get("jmx.remote.x.access.file");
   364             if (accessFile != null) {
   364             if (accessFile != null) {
   365                 // Access file property specified, create an instance
   365                 // Access file property specified, create an instance
   366                 // of the MBeanServerFileAccessController class
   366                 // of the MBeanServerFileAccessController class
   367                 //
   367                 //
   368                 MBeanServerForwarder mbsf = null;
   368                 MBeanServerForwarder mbsf;
   369                 try {
   369                 try {
   370                     mbsf = new MBeanServerFileAccessController(accessFile);
   370                     mbsf = new MBeanServerFileAccessController(accessFile);
   371                 } catch (IOException e) {
   371                 } catch (IOException e) {
   372                     throw EnvHelp.initCause(
   372                     throw EnvHelp.initCause(
   373                         new IllegalArgumentException(e.getMessage()), e);
   373                         new IllegalArgumentException(e.getMessage()), e);