Commit 6a884e2b authored by Matt Tucker's avatar Matt Tucker Committed by matt

Final round of pubsub updates for 2.6.0.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3728 b35dd754-fafc-0310-a699-88a17e54d16e
parent e81d57d2
...@@ -724,7 +724,7 @@ public class NodeSubscription { ...@@ -724,7 +724,7 @@ public class NodeSubscription {
* @return true if the published item matches the keyword filter specified in * @return true if the published item matches the keyword filter specified in
* the subscription. * the subscription.
*/ */
private boolean isKeywordMatched(PublishedItem publishedItem) { boolean isKeywordMatched(PublishedItem publishedItem) {
// Check if keyword was defined and it was not matched // Check if keyword was defined and it was not matched
if (keyword != null && keyword.length() > 0 && !publishedItem.containsKeyword(keyword)) { if (keyword != null && keyword.length() > 0 && !publishedItem.containsKeyword(keyword)) {
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment