User: fleury  
  Date: 00/09/26 17:35:25

  Modified:    src/main/org/jboss/ejb/plugins
                        EntitySynchronizationInterceptor.java
  Log:
  Removing DEBUG
  
  Revision  Changes    Path
  1.17      +5 -3      
jboss/src/main/org/jboss/ejb/plugins/EntitySynchronizationInterceptor.java
  
  Index: EntitySynchronizationInterceptor.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/EntitySynchronizationInterceptor.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- EntitySynchronizationInterceptor.java     2000/09/26 20:18:50     1.16
  +++ EntitySynchronizationInterceptor.java     2000/09/27 00:35:24     1.17
  @@ -48,7 +48,7 @@
   *   @see <related>
   *   @author Rickard �berg ([EMAIL PROTECTED])
   *   @author <a href="mailto:[EMAIL PROTECTED]">Marc Fleury</a>
  -*   @version $Revision: 1.16 $
  +*   @version $Revision: 1.17 $
   */
   public class EntitySynchronizationInterceptor
   extends AbstractInterceptor
  @@ -304,7 +304,7 @@
                
                public void beforeCompletion()
                {
  -                     Logger.log("beforeCompletion called for ctx "+ctx.hashCode());
  +                     // DEBUG Logger.log("beforeCompletion called for ctx 
"+ctx.hashCode());
                        
                        if (ctx.getId() != null) {
                                try {
  @@ -341,7 +341,9 @@
                public void afterCompletion(int status)
                {
                        if (ctx.getId() != null) {
  -                             Logger.log("afterCompletion called for ctx 
"+ctx.hashCode());
  +                             
  +                             //DEBUG Logger.log("afterCompletion called for ctx 
"+ctx.hashCode());
  +                             
                                // If rolled back -> invalidate instance
                                if (status == Status.STATUS_ROLLEDBACK) {
                                        try {
  
  
  

Reply via email to