User: fleury  
  Date: 00/09/26 17:48:15

  Modified:    src/main/org/jboss/ejb CacheKey.java
  Log:
  be less verbose
  
  Revision  Changes    Path
  1.5       +1 -3      jboss/src/main/org/jboss/ejb/CacheKey.java
  
  Index: CacheKey.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/ejb/CacheKey.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CacheKey.java     2000/09/27 00:30:31     1.4
  +++ CacheKey.java     2000/09/27 00:48:15     1.5
  @@ -19,7 +19,7 @@
   *
   *   @see org.jboss.ejb.plugins.NoPassivationInstanceCache.java
   *   @author <a href="[EMAIL PROTECTED]">Marc Fleury</a>
  -*   @version $Revision: 1.4 $
  +*   @version $Revision: 1.5 $
   */
   public class CacheKey
       implements java.io.Externalizable
  @@ -66,7 +66,6 @@
      {
           out.writeObject(id);
                out.writeInt(hashCode);
  -             System.out.println(" Cachekye on writing "+hashCode);
      
      }
      
  @@ -75,7 +74,6 @@
      {
           id = in.readObject();
          hashCode = in.readInt();
  -        System.out.println(" Cachekye on reading "+hashCode);
      }
   
       // HashCode and Equals over write --------------------------------
  
  
  

Reply via email to