diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-06-04 14:27:40 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-06-04 14:27:40 +0000 |
| commit | 69aed09e38db75ccdd89c2146c066e60a6ab1011 (patch) | |
| tree | 32f06aa8db5d813573e97c737d0036c1aa580904 /cpp/src/qpid/sys/AggregateOutput.cpp | |
| parent | b384e8073b2202db2142ebf9f9d9673483cde72f (diff) | |
| download | qpid-python-69aed09e38db75ccdd89c2146c066e60a6ab1011.tar.gz | |
QPID-4905: Tidy up
- Remove unused function getBuffered() of ConnectionOutputHandler
- Stop SessionContext and AggregateOutput from needlessly implementing
the OutputControl interface
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1489457 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/AggregateOutput.cpp')
| -rw-r--r-- | cpp/src/qpid/sys/AggregateOutput.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cpp/src/qpid/sys/AggregateOutput.cpp b/cpp/src/qpid/sys/AggregateOutput.cpp index ebc5689ce5..773ea68e55 100644 --- a/cpp/src/qpid/sys/AggregateOutput.cpp +++ b/cpp/src/qpid/sys/AggregateOutput.cpp @@ -26,11 +26,7 @@ namespace qpid { namespace sys { -AggregateOutput::AggregateOutput(OutputControl& c) : busy(false), control(c) {} - -void AggregateOutput::abort() { control.abort(); } - -void AggregateOutput::activateOutput() { control.activateOutput(); } +AggregateOutput::AggregateOutput() : busy(false) {} namespace { // Clear the busy flag and notify waiting threads in destructor. |
