summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qpid/broker/Queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/src/qpid/broker/Queue.h')
-rw-r--r--qpid/cpp/src/qpid/broker/Queue.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/qpid/cpp/src/qpid/broker/Queue.h b/qpid/cpp/src/qpid/broker/Queue.h
index 0ba7b362e9..5634e1b147 100644
--- a/qpid/cpp/src/qpid/broker/Queue.h
+++ b/qpid/cpp/src/qpid/broker/Queue.h
@@ -391,16 +391,9 @@ class Queue : public boost::enable_shared_from_this<Queue>,
void start();
/** Context information used in a cluster. */
- boost::intrusive_ptr<RefCounted> getClusterContext() {
- // FIXME aconway 2011-06-08: XXX
- QPID_LOG(critical, "FIXME q get context " << name << clusterContext);
- return clusterContext;
- }
- void setClusterContext(boost::intrusive_ptr<RefCounted> context) {
- // FIXME aconway 2011-06-08: XXX
- clusterContext = context;
- QPID_LOG(critical, "FIXME q set context " << name << clusterContext);
- }
+ boost::intrusive_ptr<RefCounted> getClusterContext() { return clusterContext; }
+ void setClusterContext(boost::intrusive_ptr<RefCounted> context) { clusterContext = context; }
+
};
}} // qpid::broker