summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorMartin Ritchie <ritchiem@apache.org>2009-04-03 13:46:43 +0000
committerMartin Ritchie <ritchiem@apache.org>2009-04-03 13:46:43 +0000
commit70bb32c02ee6102eec92648101819d2cbbd3c8c9 (patch)
tree3bf59169bcccfc3d2a30e6009f96a3d6a9e7f6ee /qpid/java
parenteef4cf28ebb5d45f0b44009b18be1cc36df39073 (diff)
downloadqpid-python-70bb32c02ee6102eec92648101819d2cbbd3c8c9.tar.gz
QPID-1784 : Fixed compile error
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@761674 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java
index 10d2f0ee2b..b252c7304e 100644
--- a/qpid/java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java
+++ b/qpid/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())
{