[jboss-cvs] JBossAS SVN: r70204 - branches/Branch_4_2/system/src/main/org/jboss/system/server/jmx.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Feb 28 03:50:04 EST 2008


Author: vicky.kak at jboss.com
Date: 2008-02-28 03:50:03 -0500 (Thu, 28 Feb 2008)
New Revision: 70204

Modified:
   branches/Branch_4_2/system/src/main/org/jboss/system/server/jmx/LazyMBeanServer.java
Log:
[JBAS-5220] Twiddle not displaying information about platform MBeans.

Modified: branches/Branch_4_2/system/src/main/org/jboss/system/server/jmx/LazyMBeanServer.java
===================================================================
--- branches/Branch_4_2/system/src/main/org/jboss/system/server/jmx/LazyMBeanServer.java	2008-02-28 08:27:18 UTC (rev 70203)
+++ branches/Branch_4_2/system/src/main/org/jboss/system/server/jmx/LazyMBeanServer.java	2008-02-28 08:50:03 UTC (rev 70204)
@@ -94,7 +94,7 @@
       if( theDelegate != null )
       {
          Class[] sig = {String.class, MBeanServer.class, MBeanServerDelegate.class};
-         Object[] args = {defaultDomain, null, theDelegate};
+         Object[] args = {defaultDomain, registeredServer, theDelegate};
          ClassLoader loader = Thread.currentThread().getContextClassLoader();
          Class c = loader.loadClass("org.jboss.mx.server.MBeanServerImpl");
          Constructor ctor = c.getConstructor(sig);




More information about the jboss-cvs-commits mailing list