summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-02-14 15:28:57 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-02-14 15:28:57 +0000
commit2f9190bc896c0d5aaaced4aad4b4f337d007d13b (patch)
treec6debc7999239486036168b5caa1f656781907c3 /cpp
parenta3efd7bf605f0d8977aa96c7ee4855ee9bb2ad5e (diff)
downloadqpid-python-2f9190bc896c0d5aaaced4aad4b4f337d007d13b.tar.gz
NO-JIRA: Removed unnecessary extra message filter check
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1446231 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r--cpp/src/qpid/broker/SemanticState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SemanticState.cpp b/cpp/src/qpid/broker/SemanticState.cpp
index 35f519c789..66d9a95cfc 100644
--- a/cpp/src/qpid/broker/SemanticState.cpp
+++ b/cpp/src/qpid/broker/SemanticState.cpp
@@ -390,7 +390,7 @@ bool SemanticStateConsumerImpl::accept(const Message& msg)
// remain on queue's listener list for possible smaller messages
// in future.
//
- blocked = !(filter(msg) && checkCredit(msg));
+ blocked = !checkCredit(msg);
return !blocked;
}