summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
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
commit20043388b5d2fb4ee63aace2d1b9e33051239ab2 (patch)
tree113c9301a6dccbb85bf9457cfbd977db26a1a26f /qpid/cpp/src
parenta8efeb60e5e9e1696e89fee443e85d8156523e0a (diff)
downloadqpid-python-20043388b5d2fb4ee63aace2d1b9e33051239ab2.tar.gz
NO-JIRA: Removed unnecessary extra message filter check
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1446231 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/broker/SemanticState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/SemanticState.cpp b/qpid/cpp/src/qpid/broker/SemanticState.cpp
index 35f519c789..66d9a95cfc 100644
--- a/qpid/cpp/src/qpid/broker/SemanticState.cpp
+++ b/qpid/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;
}