You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2004/02/12 06:42:14 UTC

cvs commit: incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/gbean/jmx ProxyFactory.java

jboynes     2004/02/11 21:42:14

  Modified:    modules/kernel/src/java/org/apache/geronimo/gbean/jmx
                        ProxyFactory.java
  Log:
  Add todo for error handling
  
  Revision  Changes    Path
  1.2       +2 -1      incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/gbean/jmx/ProxyFactory.java
  
  Index: ProxyFactory.java
  ===================================================================
  RCS file: /home/cvs/incubator-geronimo/modules/kernel/src/java/org/apache/geronimo/gbean/jmx/ProxyFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ProxyFactory.java	26 Jan 2004 06:50:46 -0000	1.1
  +++ ProxyFactory.java	12 Feb 2004 05:42:14 -0000	1.2
  @@ -88,6 +88,7 @@
   
       public synchronized Object create(MethodInterceptor methodInterceptor, Class[] types, Object[] arguments) throws InvocationTargetException {
           enhancer.setCallbacks(new Callback[]{methodInterceptor});
  +        // @todo trap CodeGenerationException indicating missing no-arg ctr
           return enhancer.create(types, arguments);
       }
   }