From 53ca5d4ba149ee3f9c5ea079562282429bb2a845 Mon Sep 17 00:00:00 2001 From: Young Ik Cho Date: Thu, 11 Jul 2013 20:31:36 +0900 Subject: [PATCH] remove redundant log Change-Id: I32f0c831874fa8c0924706e15ceb5ac9205b99ed Signed-off-by: Young Ik Cho --- src/app/FApp_AppArg.cpp | 43 ------------------------------------- src/app/FApp_AppControlRegistry.cpp | 21 ------------------ 2 files changed, 64 deletions(-) diff --git a/src/app/FApp_AppArg.cpp b/src/app/FApp_AppArg.cpp index 2d33f5a..3d5c714 100644 --- a/src/app/FApp_AppArg.cpp +++ b/src/app/FApp_AppArg.cpp @@ -1242,49 +1242,6 @@ _AppArg::Print(bundle* b) return; } - const char* p = null; - p = appsvc_get_data(b, AUL_K_CALLER_PID); - if (p) - { - SysLog(NID_APP, "CallerPId[%s]", p); - } - - p = appsvc_get_data(b, AUL_K_WAIT_RESULT); - if (p) - { - SysLog(NID_APP, "WaitResult[%s]", p); - } - - p = appsvc_get_data(b, OSP_K_COND); - if (p) - { - SysLog(NID_APP, "Condition[%s]", p); - } - - p = appsvc_get_operation(b); - if (p) - { - SysLog(NID_APP, "operation[%s]", p); - } - - p = appsvc_get_uri(b); - if (p) - { - SysLog(NID_APP, "uri[%s]", p); - } - - p = appsvc_get_mime(b); - if (p) - { - SysLog(NID_APP, "mime[%s]", p); - } - - p = appsvc_get_category(b); - if (p) - { - SysLog(NID_APP, "Category[%s]", p); - } - bundle_foreach(b, BundlePrintIterFnCb, NULL); int len = 0; diff --git a/src/app/FApp_AppControlRegistry.cpp b/src/app/FApp_AppControlRegistry.cpp index 1cd9620..8bcb653 100644 --- a/src/app/FApp_AppControlRegistry.cpp +++ b/src/app/FApp_AppControlRegistry.cpp @@ -59,7 +59,6 @@ const wchar_t ACTL_ALIAS_FILE[] = L"/usr/etc/app-control-appid.ini"; const wchar_t TIZEN_ALIAS_APPID_PREFIX[] = L"tizen."; -const String ACTL_REGISTRY_PUBLIC = L"Public"; const String ACTL_REGISTRY_PATH = L"Path"; const String ACTL_REGISTRY_ALIAS_PROVIDER = L"PROVIDER_ALIAS"; @@ -149,26 +148,6 @@ _AppControlRegistry::LoadTizenAppControlRegistry(void) continue; } -#if 0 - int public_open = 0; - - /////////////////////////////////////////////////////////////////////// - // Plubic - index = reg.GetEntryIndex(i, ACTL_REGISTRY_PUBLIC); - if (index >= 0) - { - size = sizeof(size); - num = 0; - - reg.GetEntryValue(i, index, REG_VALUE_TYPE_INT, &num, &size); - if (num == 1) - { - // public - public_open = 1; - } - } -#endif - /////////////////////////////////////////////////////////////////////// // Path index = reg.GetEntryIndex(i, ACTL_REGISTRY_PATH); -- 2.7.4