You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ri...@apache.org on 2007/03/06 16:35:52 UTC

svn commit: r515142 - /incubator/qpid/trunk/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ConcurrentSelectorDeliveryManager.java

Author: ritchiem
Date: Tue Mar  6 07:35:51 2007
New Revision: 515142

URL: http://svn.apache.org/viewvc?view=rev&rev=515142
Log:
Marked getNextMessage as private

Modified:
    incubator/qpid/trunk/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ConcurrentSelectorDeliveryManager.java

Modified: incubator/qpid/trunk/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ConcurrentSelectorDeliveryManager.java
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ConcurrentSelectorDeliveryManager.java?view=diff&rev=515142&r1=515141&r2=515142
==============================================================================
--- incubator/qpid/trunk/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ConcurrentSelectorDeliveryManager.java (original)
+++ incubator/qpid/trunk/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/ConcurrentSelectorDeliveryManager.java Tue Mar  6 07:35:51 2007
@@ -388,7 +388,7 @@
         return count;
     }
 
-    public synchronized AMQMessage getNextMessage() throws AMQException
+    private AMQMessage getNextMessage() throws AMQException
     {
         return getNextMessage(_messages, null);
     }