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

Manik Surtani msurtani at jboss.com
Thu Jan 11 07:24:15 EST 2007


  User: msurtani
  Date: 07/01/11 07:24:15

  Modified:    src/org/jboss/cache  CacheImpl.java
  Log:
  Removed unused constructors
  
  Revision  Changes    Path
  1.24      +1 -21     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.23
  retrieving revision 1.24
  diff -u -b -r1.23 -r1.24
  --- CacheImpl.java	11 Jan 2007 12:07:28 -0000	1.23
  +++ CacheImpl.java	11 Jan 2007 12:24:15 -0000	1.24
  @@ -98,7 +98,7 @@
    * @author <a href="mailto:manik at jboss.org">Manik Surtani (manik at jboss.org)</a>
    * @author Brian Stansberry
    * @author Daniel Huang (dhuang at jboss.org)
  - * @version $Id: CacheImpl.java,v 1.23 2007/01/11 12:07:28 msurtani Exp $
  + * @version $Id: CacheImpl.java,v 1.24 2007/01/11 12:24:15 msurtani Exp $
    *          <p/>
    * @see <a href="http://labs.jboss.com/portal/jbosscache/docs">JBossCache doc</a>
    */
  @@ -256,16 +256,6 @@
      }
   
      /**
  -    * Creates a CacheImpl with a given configuration
  -    */
  -   public CacheImpl(Configuration configuration) throws Exception
  -   {
  -      notifier = new Notifier(this);
  -      this.configuration = configuration;
  -      regionManager = new RegionManager(this);
  -   }
  -
  -   /**
       * Constructs an uninitialized CacheImpl.
       */
      public CacheImpl() throws Exception
  @@ -275,16 +265,6 @@
      }
   
      /**
  -    * Constructs a CacheImpl with an already connected channel.
  -    */
  -   public CacheImpl(JChannel channel) throws Exception
  -   {
  -      notifier = new Notifier(this);
  -      this.channel = channel;
  -      regionManager = new RegionManager(this);
  -   }
  -
  -   /**
       * Returns the CacheImpl implementation version.
       */
      public String getVersion()
  
  
  



More information about the jboss-cvs-commits mailing list