User: fleury  
  Date: 00/05/27 13:01:41

  Modified:    src/main/org/jboss/ejb Container.java
  Log:
  comments
  
  Revision  Changes    Path
  1.7       +6 -7      jboss/src/main/org/jboss/ejb/Container.java
  
  Index: Container.java
  ===================================================================
  RCS file: /products/cvs/ejboss/jboss/src/main/org/jboss/ejb/Container.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Container.java    2000/05/24 06:53:52     1.6
  +++ Container.java    2000/05/27 20:01:40     1.7
  @@ -47,7 +47,7 @@
    *      
    *   @see <related>
    *   @author Rickard �berg ([EMAIL PROTECTED])
  - *   @version $Revision: 1.6 $
  + *   @version $Revision: 1.7 $
    */
   public abstract class Container
   {
  @@ -169,19 +169,18 @@
         instancePool.init();
         
         containerInvoker.init();
  -      
  -      // MF why addInterceptor here and not ContainerFactory? due to the protected?
  -      // dude this is hard, no comments, no hints, please throw the dog a bone man!
  -      
  -      //addInterceptor(createContainerInterceptor());
  +       
  +       
  +       // Initialize the interceptor by calling the chain
         Interceptor in = interceptor;
         while (in != null)
         {
  +             
            in.setContainer(this);
            in.init();
            in = in.getNext();
         }
  -      
  +        
         Thread.currentThread().setContextClassLoader(oldCl);
      }
      
  
  
  

Reply via email to