From 5f7440353dbfbccd6521f8b5fa32a6a8aa705624 Mon Sep 17 00:00:00 2001 From: Martin Ritchie Date: Fri, 3 Apr 2009 13:46:43 +0000 Subject: QPID-1784 : Fixed compile error git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@761674 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java b/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java index 10d2f0ee2b..b252c7304e 100644 --- a/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java +++ b/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java @@ -428,7 +428,7 @@ public abstract class FlowableBaseQueueEntryList implements QueueEntryList } //If we have become flowed or have more capacity since we stopped then schedule the thread to run again. - if (!finshedInhaling _flowed.get() && _atomicQueueInMemory.get() < _memoryUsageMaximum) + if (!finshedInhaling && _flowed.get() && _atomicQueueInMemory.get() < _memoryUsageMaximum) { if (_log.isInfoEnabled()) { -- cgit v1.2.1