removed some @todo tags

This commit is contained in:
Emiel Bruijntjes 2014-04-15 13:22:06 +02:00
parent b13398b09d
commit 3d4a1b865e
2 changed files with 2 additions and 10 deletions

View File

@ -431,8 +431,6 @@ public:
/** /**
* Report to the handler that the channel is opened * Report to the handler that the channel is opened
*
* @todo when is this sent?
*/ */
void reportReady() void reportReady()
{ {
@ -442,18 +440,14 @@ public:
/** /**
* Report to the handler that the channel is closed * Report to the handler that the channel is closed
*
* @todo do we need this?
*/ */
void reportClosed() void reportClosed()
{ {
// change state // change state
_state = state_closed; _state = state_closed;
// inform handler // and pass on to the reportSuccess() method which will call the
// appropriate deferred object to report the successful operation
// @todo do we report success here?
reportSuccess(); reportSuccess();
} }

View File

@ -105,8 +105,6 @@ Deferred &ChannelImpl::push(Deferred *deferred)
// store newest callback // store newest callback
_newestCallback = deferred; _newestCallback = deferred;
// @todo in case of error we have to report the error with a timeout
// done // done
return *deferred; return *deferred;
} }