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

Brian Stansberry brian.stansberry at jboss.com
Wed May 23 01:15:37 EDT 2007


  User: bstansberry
  Date: 07/05/23 01:15:37

  Modified:    src/org/jboss/cache  CacheImpl.java
  Log:
  Get rid of CacheMBeanInterface property
  
  Revision  Changes    Path
  1.71      +0 -19     JBossCache/src/org/jboss/cache/CacheImpl.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheImpl.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/CacheImpl.java,v
  retrieving revision 1.70
  retrieving revision 1.71
  diff -u -b -r1.70 -r1.71
  --- CacheImpl.java	23 May 2007 01:35:48 -0000	1.70
  +++ CacheImpl.java	23 May 2007 05:15:37 -0000	1.71
  @@ -220,11 +220,6 @@
       */
      private Notifier<K, V> notifier;
   
  -   /**
  -    * MBean interface for this cache.
  -    */
  -   private CacheJmxWrapperMBean cacheMBean;
  -
      private ThreadLocal<InvocationContext> invocationContextContainer = new ThreadLocal<InvocationContext>()
      {
         @Override
  @@ -3081,20 +3076,6 @@
         invocationContextContainer.set(ctx);
      }
   
  -   public CacheJmxWrapperMBean getCacheMBeanInterface()
  -   {
  -      if (cacheMBean == null)
  -      {
  -         cacheMBean = new CacheJmxWrapper(this);
  -      }
  -      return cacheMBean;
  -   }
  -
  -   public void setCacheMBeanInterface(CacheJmxWrapperMBean mbean)
  -   {
  -      this.cacheMBean = mbean;
  -   }
  -
      /**
       * New API to efficiently relocate a node
       *
  
  
  



More information about the jboss-cvs-commits mailing list