summaryrefslogtreecommitdiff
path: root/java/broker
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
commit5f7440353dbfbccd6521f8b5fa32a6a8aa705624 (patch)
tree839d61539727aa70a447d11dba43357c8e3fafa4 /java/broker
parent468568e85b76a040aeedb984be79913347700016 (diff)
downloadqpid-python-5f7440353dbfbccd6521f8b5fa32a6a8aa705624.tar.gz
QPID-1784 : Fixed compile error
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@761674 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/broker')
-rw-r--r--java/broker/src/main/java/org/apache/qpid/server/queue/FlowableBaseQueueEntryList.java2
1 files changed, 1 insertions, 1 deletions
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())
{