[jboss-cvs] jboss-seam/src/main/org/jboss/seam/interceptors ...

Gavin King gavin.king at jboss.com
Sat Jun 16 18:30:40 EDT 2007


  User: gavin   
  Date: 07/06/16 18:30:40

  Modified:    src/main/org/jboss/seam/interceptors 
                        ManagedEntityIdentityInterceptor.java
  Log:
  fix
  
  Revision  Changes    Path
  1.26      +1 -1      jboss-seam/src/main/org/jboss/seam/interceptors/ManagedEntityIdentityInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ManagedEntityIdentityInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ManagedEntityIdentityInterceptor.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- ManagedEntityIdentityInterceptor.java	16 Jun 2007 18:34:28 -0000	1.25
  +++ ManagedEntityIdentityInterceptor.java	16 Jun 2007 22:30:40 -0000	1.26
  @@ -111,7 +111,7 @@
      private boolean isRef(Object value)
      {
         //TODO: can do better than this for lists!
  -      return value instanceof List && Seam.isEntityClass( value.getClass() );
  +      return value instanceof List || Seam.isEntityClass( value.getClass() );
      }
   
      private Object getFieldValue(Object bean, Field field) throws Exception
  
  
  



More information about the jboss-cvs-commits mailing list