[jboss-cvs] JBossCache/src/org/jboss/cache/pojo/collection ...

Jason Thomas Greene jgreene at jboss.com
Tue Jun 26 18:25:56 EDT 2007


  User: jgreene 
  Date: 07/06/26 18:25:56

  Modified:    src/org/jboss/cache/pojo/collection 
                        CollectionInterceptorUtil.java
  Log:
  No need to skip equals since we check for a local detach
  
  Revision  Changes    Path
  1.7       +0 -2      JBossCache/src/org/jboss/cache/pojo/collection/CollectionInterceptorUtil.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CollectionInterceptorUtil.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/pojo/collection/CollectionInterceptorUtil.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- CollectionInterceptorUtil.java	26 Jun 2007 22:16:42 -0000	1.6
  +++ CollectionInterceptorUtil.java	26 Jun 2007 22:25:56 -0000	1.7
  @@ -164,8 +164,6 @@
         Class<?>[] types = method.getParameterTypes();
         if ("toString".equals(name) && types.length == 0)
            return true;
  -      if ("equals".equals(name) && types.length == 1 && types[0] == Object.class)
  -         return true;
   
         return false;
      }
  
  
  



More information about the jboss-cvs-commits mailing list