diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-02-14 15:28:57 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-02-14 15:28:57 +0000 |
| commit | 2f9190bc896c0d5aaaced4aad4b4f337d007d13b (patch) | |
| tree | c6debc7999239486036168b5caa1f656781907c3 /cpp | |
| parent | a3efd7bf605f0d8977aa96c7ee4855ee9bb2ad5e (diff) | |
| download | qpid-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.cpp | 2 |
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; } |
