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

View File

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