allow empty operation ID for AppControl instance
authorYoung Ik Cho <youngik.cho@samsung.com>
Tue, 15 Oct 2013 08:05:51 +0000 (17:05 +0900)
committerYoung Ik Cho <youngik.cho@samsung.com>
Tue, 15 Oct 2013 08:05:51 +0000 (17:05 +0900)
Change-Id: I3a096d47580d2f4c3260cc466ecd0fc079ac7925
Signed-off-by: Young Ik Cho <youngik.cho@samsung.com>
src/app/FApp_AppControlImpl.cpp

index 8c0126e..7c22057 100644 (file)
@@ -104,7 +104,6 @@ _AppControlImpl::CreateN(const String& path, const String& aId, const String& oI
 {
        SysTryReturn(NID_APP, !path.IsEmpty(), null, E_INVALID_ARG, "[E_INVALID_ARG] Path is empty.");
        SysTryReturn(NID_APP, !aId.IsEmpty(), null, E_INVALID_ARG, "[E_INVALID_ARG] Provider Id is empty.");
-       SysTryReturn(NID_APP, !oId.IsEmpty(), null, E_INVALID_ARG, "[E_INVALID_ARG] Operation Id is empty.");
 
        const AppId& actualAppId = _AppControlRegistry::GetInstance()->GetAliasAppId(aId);
        const bool isInstalled = _Aul::IsInstalled(actualAppId);