Unused code removed.
[framework/osp/common-service.git] / src / messaging / FMsg_IpcCallbackHandler.cpp
index 5b6b596..8e8b991 100644 (file)
@@ -67,13 +67,6 @@ _IpcCallbackHandler::Construct()
 {
        result r = E_SUCCESS;
 
-       r = __messageMap.Construct();
-
-       if (r == E_SUCCESS)
-       {
-               r = __msgMutex.Create();
-       }
-
        __pTempCbsChannelList = new (std::nothrow) ArrayList();
        SysTryReturnResult(NID_MSG, __pTempCbsChannelList != null, E_OUT_OF_MEMORY, "memory allocation failed");
        r = __pTempCbsChannelList->Construct();
@@ -92,11 +85,6 @@ _IpcCallbackHandler::~_IpcCallbackHandler(void)
                __msgHandle = 0;
        }
 
-       if (__messageMap.GetCount())
-       {
-               __messageMap.RemoveAll(true);
-       }
-
        if (__cbsSettingsHandle)
        {
                msg_release_struct(&__cbsSettingsHandle);