[jboss-cvs] JBoss Messaging SVN: r1703 - 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
Mon Dec 4 13:13:10 EST 2006


Author: ovidiu.feodorov at jboss.com
Date: 2006-12-04 13:13:09 -0500 (Mon, 04 Dec 2006)
New Revision: 1703

Modified:
   branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/cluster/DefaultClusteredPostOffice.java
Log:
fixed variable name mixup

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-12-04 10:36:59 UTC (rev 1702)
+++ branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/cluster/DefaultClusteredPostOffice.java	2006-12-04 18:13:09 UTC (rev 1703)
@@ -701,7 +701,7 @@
             replicatedData.put(key, m);
          }
          
-         m.put(new Integer(nodeId), replicant); 
+         m.put(new Integer(originatorNodeID), replicant);
          
          notifyListeners(key, m);
       }
@@ -727,7 +727,7 @@
             return false;
          }
          
-         Object obj = m.remove(new Integer(nodeId));
+         Object obj = m.remove(new Integer(originatorNodeID));
          
          if (obj == null)
          {




More information about the jboss-cvs-commits mailing list