User: fleury  
  Date: 00/07/27 16:13:45

  Modified:    src/main/org/jboss/ejb/plugins/jrmp/interfaces
                        MethodInvocation.java
  Log:
  It is not because the use was deprecated that we should not clean, also it seems 
that we still have some hashing problems in the new versions
  
  Revision  Changes    Path
  1.7       +1 -6      
jboss/src/main/org/jboss/ejb/plugins/jrmp/interfaces/MethodInvocation.java
  
  Index: MethodInvocation.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/jrmp/interfaces/MethodInvocation.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- MethodInvocation.java     2000/06/07 22:13:09     1.6
  +++ MethodInvocation.java     2000/07/27 23:13:44     1.7
  @@ -23,7 +23,7 @@
    *   @author Rickard �berg ([EMAIL PROTECTED])
    *  @author <a href="mailto:[EMAIL PROTECTED]">Richard 
Monson-Haefel</a>.
    *  @author <a href="mailto:[EMAIL PROTECTED]">Marc Fleury</a>.
  - *   @version $Revision: 1.6 $
  + *   @version $Revision: 1.7 $
    */
   public class MethodInvocation
      implements java.io.Serializable
  @@ -61,10 +61,6 @@
          // Overriding is not seen and must include parameters
         this.hash = calculateHash(m);
         this.args = args;
  -
  -       System.out.println("In Method INVOCATION CREATE 
"+m.getDeclaringClass()+m.getName()+m.getParameterTypes().length);
  -       System.out.println("In Method INVOCATION CREATE hash "+hash);
  -
      }
      // Public --------------------------------------------------------
   
  @@ -111,7 +107,6 @@
         {
            // Get method based on its hash value
            Method m = (Method)methodMap.get(new Integer(hash));
  -              System.out.println("In Method INVOCATION LOOKUP 
"+m.getDeclaringClass()+m.getName()+m.getParameterTypes().length);
   
            if (m == null)
               throw new NoSuchMethodException(clazz+":"+hash);
  
  
  

Reply via email to