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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Dec 3 21:38:16 EST 2006


Author: ovidiu.feodorov at jboss.com
Date: 2006-12-03 21:38:15 -0500 (Sun, 03 Dec 2006)
New Revision: 1697

Modified:
   branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/DefaultPostOffice.java
Log:
removed spurious logging statements

Modified: branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/DefaultPostOffice.java
===================================================================
--- branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/DefaultPostOffice.java	2006-12-04 02:33:18 UTC (rev 1696)
+++ branches/Branch_Client_Failover_Experiment/src/main/org/jboss/messaging/core/plugin/postoffice/DefaultPostOffice.java	2006-12-04 02:38:15 UTC (rev 1697)
@@ -257,8 +257,11 @@
       }
    }
 
-   /** Internal methods (e.g. failOver) will already hold a lock and will need to call getBindingForQueueNames without a lock.
-    *  (Also... I dind't move this method to the protected section of the code as this is related to getBindingForQueueNames */
+   /**
+    * Internal methods (e.g. failOver) will already hold a lock and will need to call
+    * getBindingForQueueNames without a lock. (Also... I dind't move this method to the protected
+    * section of the code as this is related to getBindingForQueueNames).
+    */
    protected Binding internalGetBindingForQueueName(String queueName)
    {
       Map nameMap = (Map)nameMaps.get(new Integer(nodeId));
@@ -269,13 +272,7 @@
       {
          binding = (Binding)nameMap.get(queueName);
       }
-      else
-      {
-          log.info("nameMap is null");
-      }
 
-
-      log.info("Returned " + binding);
       return binding;
    }
 




More information about the jboss-cvs-commits mailing list