[jboss-cvs] JBossCache/src-50/org/jboss/cache/pojo ...

Manik Surtani msurtani at jboss.com
Wed Sep 6 13:58:20 EDT 2006


  User: msurtani
  Date: 06/09/06 13:58:20

  Modified:    src-50/org/jboss/cache/pojo  PojoTreeCache.java
  Log:
  Refactored tx interceptor so the invocation context interceptor sets up the context initially.  Also fixed some breakage in PojoTreeCache
  
  Revision  Changes    Path
  1.14      +4 -4      JBossCache/src-50/org/jboss/cache/pojo/PojoTreeCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PojoTreeCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/PojoTreeCache.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- PojoTreeCache.java	26 Jul 2006 07:10:26 -0000	1.13
  +++ PojoTreeCache.java	6 Sep 2006 17:58:20 -0000	1.14
  @@ -47,18 +47,18 @@
      }
   
      @Override
  -   public void startService() throws Exception
  +   public void start() throws Exception
      {
         // Replace the default state transfer manager. TODO
   //      setStateTransferManager(new PojoStateTransferManager(this));
  -      super.startService();
  +      super.start();
         parseConfig();
      }
   
      @Override
  -   public void stopService()
  +   public void stop()
      {
  -      super.stopService();
  +      super.stop();
      }
   
      private void parseConfig()
  
  
  



More information about the jboss-cvs-commits mailing list