jdillon 2003/08/30 10:49:18
Modified: modules/common/src/java/org/apache/geronimo/common/jmx
MBeanProxyFactory.java
Log:
o fixed changed class name
Revision Changes Path
1.2 +2 -2
incubator-geronimo/modules/common/src/java/org/apache/geronimo/common/jmx/MBeanProxyFactory.java
Index: MBeanProxyFactory.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/common/src/java/org/apache/geronimo/common/jmx/MBeanProxyFactory.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MBeanProxyFactory.java 30 Aug 2003 16:32:38 -0000 1.1
+++ MBeanProxyFactory.java 30 Aug 2003 17:49:17 -0000 1.2
@@ -98,7 +98,7 @@
LocalHandler handler = new LocalHandler(iface, server, objectName);
return Proxy.newProxyInstance(
- cl, new Class[] { iface, MBeanProxyInstance.class }, handler
+ cl, new Class[] { iface, MBeanProxy.class }, handler
);
}