diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-22 09:20:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-22 10:17:00 +0100 |
commit | cdeb79552c75a89934c1535dae6062db48014498 (patch) | |
tree | f714d058cbc52bd925d6b821b68d018bc4c144e6 /automation | |
parent | eb0b81132d044fceec4464eee9735b03ceb1fd57 (diff) |
callcatcher: remove unused methods
Diffstat (limited to 'automation')
-rw-r--r-- | automation/inc/automation/simplecm.hxx | 1 | ||||
-rw-r--r-- | automation/source/simplecm/simplecm.cxx | 11 |
2 files changed, 0 insertions, 12 deletions
diff --git a/automation/inc/automation/simplecm.hxx b/automation/inc/automation/simplecm.hxx index f46cb22572a5..9a5211b1ad37 100644 --- a/automation/inc/automation/simplecm.hxx +++ b/automation/inc/automation/simplecm.hxx @@ -321,7 +321,6 @@ protected: SvStream *pReceiveStream; sal_Bool DoReceiveDataStream(); /// Recieve DataPacket from Socket virtual sal_Bool SendHandshake( HandshakeType aHandshakeType, SvStream* pData = NULL); - bool IsReceiveReady(); sal_Bool bIsRequestShutdownPending; virtual void WaitForShutdown()=0; void SetNewPacketAsCurrent(); diff --git a/automation/source/simplecm/simplecm.cxx b/automation/source/simplecm/simplecm.cxx index ae4a0659c2a0..39f86436a9a3 100644 --- a/automation/source/simplecm/simplecm.cxx +++ b/automation/source/simplecm/simplecm.cxx @@ -343,17 +343,6 @@ sal_Bool SimpleCommunicationLinkViaSocket::SendHandshake( HandshakeType aHandsha return !bWasError; } -bool SimpleCommunicationLinkViaSocket::IsReceiveReady() -{ - if ( !IsCommunicationError() ) - { - TimeValue aTime = {30, 0}; // 30 seconds - return pStreamSocket->isRecvReady( &aTime ); - } - - return false; -} - CommunicationManager::CommunicationManager( sal_Bool bUseMultiChannel ) : nInfoType( CM_NONE ) , bIsCommunicationRunning( sal_False ) |