User: mnf999  
  Date: 02/02/06 12:59:27

  Modified:    src/main/org/jboss/invocation/local LocalInvoker.java
  Log:
  The invocation branching is now based on int and a case switch (SPEEEEEEEED)
  
  Revision  Changes    Path
  1.3       +2 -2      jboss/src/main/org/jboss/invocation/local/LocalInvoker.java
  
  Index: LocalInvoker.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/invocation/local/LocalInvoker.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LocalInvoker.java 2002/02/06 18:27:51     1.2
  +++ LocalInvoker.java 2002/02/06 20:59:27     1.3
  @@ -28,7 +28,7 @@
   *  
   *  @author <a href="mailto:[EMAIL PROTECTED]>Marc Fleury</a>
   *
  -*  @version $Revision: 1.2 $
  +*  @version $Revision: 1.3 $
   *
   */
   
  @@ -111,7 +111,7 @@
            
            ObjectName mbean = (ObjectName) Registry.lookup((Integer) 
invocation.getContainer());
           
  -         return server.invoke(mbean, invocation.getType(),  new Object[] 
{invocation}, new String[] {"java.lang.Object"}); 
  +         return server.invoke(mbean, null,  new Object[] {invocation}, new String[] 
{"java.lang.Object"}); 
         }
         
         catch (MBeanException mbe) { throw mbe.getTargetException(); }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to