[hornetq-commits] JBoss hornetq SVN: r11620 - branches/Branch_2_2_EAP/src/main/org/hornetq/core/client/impl.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Oct 31 11:18:30 EDT 2011


Author: ataylor
Date: 2011-10-31 11:18:27 -0400 (Mon, 31 Oct 2011)
New Revision: 11620

Modified:
   branches/Branch_2_2_EAP/src/main/org/hornetq/core/client/impl/ServerLocatorImpl.java
Log:
added fix for backward compatibility

Modified: branches/Branch_2_2_EAP/src/main/org/hornetq/core/client/impl/ServerLocatorImpl.java
===================================================================
--- branches/Branch_2_2_EAP/src/main/org/hornetq/core/client/impl/ServerLocatorImpl.java	2011-10-30 02:22:37 UTC (rev 11619)
+++ branches/Branch_2_2_EAP/src/main/org/hornetq/core/client/impl/ServerLocatorImpl.java	2011-10-31 15:18:27 UTC (rev 11620)
@@ -57,6 +57,9 @@
  */
 public class ServerLocatorImpl implements ServerLocatorInternal, DiscoveryListener, Serializable
 {
+    /*needed for backward compatibility*/
+   private final Set<ClusterTopologyListener> topologyListeners = new HashSet<ClusterTopologyListener>();
+   /*end of compatibility fixes*/
    private enum STATE{ INITIALIZED, CLOSED, CLOSING};
    
    private static final long serialVersionUID = -1615857864410205260L;



More information about the hornetq-commits mailing list