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

Gavin King gavin.king at jboss.com
Tue Mar 6 15:33:56 EST 2007


  User: gavin   
  Date: 07/03/06 15:33:56

  Modified:    src/main/org/jboss/seam/persistence  EntityManagerProxy.java
  Log:
  fix bad bug
  
  Revision  Changes    Path
  1.4       +3 -1      jboss-seam/src/main/org/jboss/seam/persistence/EntityManagerProxy.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EntityManagerProxy.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/persistence/EntityManagerProxy.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- EntityManagerProxy.java	26 Feb 2007 19:24:50 -0000	1.3
  +++ EntityManagerProxy.java	6 Mar 2007 20:33:56 -0000	1.4
  @@ -1,12 +1,14 @@
   package org.jboss.seam.persistence;
   
  +import java.io.Serializable;
  +
   import javax.persistence.EntityManager;
   import javax.persistence.EntityTransaction;
   import javax.persistence.FlushModeType;
   import javax.persistence.LockModeType;
   import javax.persistence.Query;
   
  -public class EntityManagerProxy implements EntityManager
  +public class EntityManagerProxy implements EntityManager, Serializable
   {
      private EntityManager delegate;
   
  
  
  



More information about the jboss-cvs-commits mailing list