summaryrefslogtreecommitdiff
path: root/source/CEH/ProtromRpcInterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/CEH/ProtromRpcInterface.cpp')
-rw-r--r--source/CEH/ProtromRpcInterface.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/source/CEH/ProtromRpcInterface.cpp b/source/CEH/ProtromRpcInterface.cpp
index aa75334..d5a3dc8 100644
--- a/source/CEH/ProtromRpcInterface.cpp
+++ b/source/CEH/ProtromRpcInterface.cpp
@@ -9,10 +9,8 @@
ProtromRpcInterface::ProtromRpcInterface(CmdResult *CmdResult, LcmInterface *LcmInterface)
{
PROTROM_Payload = new uint8[0x10000];
- cancelDeviceOnResult_ = false;
cmdResult_ = CmdResult;
lcmInterface_ = LcmInterface;
- commDevice_ = NULL;
}
ProtromRpcInterface::~ProtromRpcInterface()
@@ -239,10 +237,6 @@ ErrorCode_e ProtromRpcInterface::DoneRPC_PROTROM_ResultImpl(CommandData_t CmdDat
// skip PDU type
Payload_p++;
- if (cancelDeviceOnResult_) {
- commDevice_->Cancel(lcmInterface_->getLCMContext());
- }
-
return E_SUCCESS;
}
@@ -265,8 +259,3 @@ ErrorCode_e ProtromRpcInterface::DoneRPC_PROTROM_ReadyToReceiveImpl(CommandData_
return E_SUCCESS;
}
-void ProtromRpcInterface::CancelDeviceOnResult(CommunicationDevice_t *commDevice)
-{
- cancelDeviceOnResult_ = true;
- commDevice_ = commDevice;
-}