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

Manik Surtani msurtani at jboss.com
Wed Jan 3 10:33:09 EST 2007


  User: msurtani
  Date: 07/01/03 10:33:09

  Modified:    src/org/jboss/cache/config   ConfigurationException.java
                        BuddyReplicationConfig.java
  Log:
  Improved notification mechanism, added a notification interceptor
  
  Revision  Changes    Path
  1.5       +33 -33    JBossCache/src/org/jboss/cache/config/ConfigurationException.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ConfigurationException.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/config/ConfigurationException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- ConfigurationException.java	11 Dec 2006 21:14:34 -0000	1.4
  +++ ConfigurationException.java	3 Jan 2007 15:33:09 -0000	1.5
  @@ -8,8 +8,8 @@
   
   import org.jboss.cache.CacheException;
   
  -import java.util.List;
   import java.util.ArrayList;
  +import java.util.List;
   
   /**
    * An exception that represents an error in the configuration
  
  
  
  1.4       +42 -41    JBossCache/src/org/jboss/cache/config/BuddyReplicationConfig.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BuddyReplicationConfig.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/config/BuddyReplicationConfig.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- BuddyReplicationConfig.java	6 Nov 2006 23:34:09 -0000	1.3
  +++ BuddyReplicationConfig.java	3 Jan 2007 15:33:09 -0000	1.4
  @@ -21,10 +21,10 @@
    */
   package org.jboss.cache.config;
   
  -import java.util.Properties;
  -
   import org.jboss.cache.buddyreplication.NextMemberBuddyLocator;
   
  +import java.util.Properties;
  +
   
   public class BuddyReplicationConfig extends ConfigurationComponent
   {
  @@ -166,7 +166,8 @@
      {
         private static final long serialVersionUID = -8003634097931826091L;
         
  -      private String buddyLocatorClass = NextMemberBuddyLocator.class.getName();;
  +      private String buddyLocatorClass = NextMemberBuddyLocator.class.getName();
  +      ;
         private Properties buddyLocatorProperties;
         
         public BuddyLocatorConfig()
  
  
  



More information about the jboss-cvs-commits mailing list