[jboss-cvs] JBoss Messaging SVN: r1529 - branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/cluster

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 31 16:06:57 EST 2006


Author: clebert.suconic at jboss.com
Date: 2006-10-31 16:06:56 -0500 (Tue, 31 Oct 2006)
New Revision: 1529

Modified:
   branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/cluster/DefaultClusteredPostOffice.java
Log:
http://jira.jboss.org/jira/browse/JBMESSAGING-519 - changing DefaultBinding type

Modified: branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/cluster/DefaultClusteredPostOffice.java
===================================================================
--- branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/cluster/DefaultClusteredPostOffice.java	2006-10-31 15:43:04 UTC (rev 1528)
+++ branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/cluster/DefaultClusteredPostOffice.java	2006-10-31 21:06:56 UTC (rev 1529)
@@ -1125,7 +1125,7 @@
        for (Iterator iterNames = namesToRemove.iterator();iterNames.hasNext();)
        {
            Map.Entry entry = (Map.Entry)iterNames.next();
-           DefaultBinding binding = (DefaultBinding)entry.getValue();
+           Binding binding = (Binding)entry.getValue();
            RemoteQueueStub stub = (RemoteQueueStub)binding.getQueue();
            this.removeBinding(nodeId,(String)entry.getKey());
 




More information about the jboss-cvs-commits mailing list