User: fleury
Date: 00/10/17 16:33:26
Modified: src/main/org/jboss/ejb/plugins EntityInstancePool.java
Log:
The pool doesn't do the cleanup of the context anymore. The base pool calls clear()
on them.
Revision Changes Path
1.8 +1 -5 jboss/src/main/org/jboss/ejb/plugins/EntityInstancePool.java
Index: EntityInstancePool.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/EntityInstancePool.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- EntityInstancePool.java 2000/10/09 20:15:37 1.7
+++ EntityInstancePool.java 2000/10/17 23:33:26 1.8
@@ -20,7 +20,7 @@
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
* @author <a href="mailto:[EMAIL PROTECTED]">Marc Fleury</a>
- * @version $Revision: 1.7 $
+ * @version $Revision: 1.8 $
*/
public class EntityInstancePool
extends AbstractInstancePool
@@ -49,10 +49,6 @@
// If transaction still present don't do anything (let the instance be GC)
if (ctx.getTransaction() != null) return ;
- // Reset instance
- ((EntityEnterpriseContext)ctx).setValid(false);
- ((EntityEnterpriseContext)ctx).setInvoked(false);
-
super.free(ctx);
}