utils: remove deprecated function 70/127670/1
authorLukasz Stanislawski <l.stanislaws@samsung.com>
Fri, 28 Apr 2017 08:13:03 +0000 (10:13 +0200)
committerLukasz Stanislawski <l.stanislaws@samsung.com>
Fri, 28 Apr 2017 08:13:03 +0000 (10:13 +0200)
Change-Id: I62f86cbd0ebf0a06c10cf0d44f3f97018dbeb5d1

clock/inc/Utils/TizenAppUtils.h
clock/src/Utils/TizenAppUtils.cpp

index c6bfd5246770542c3c4ca650eccbc2e802357790..f336ffdbbc81fc2bf5cf4e7fa3831980be324ce5 100644 (file)
@@ -45,8 +45,6 @@ namespace utils {
                        APP_DIR_EXTERNAL_DATA,
                        /** External cache directory */
                        APP_DIR_EXTERNAL_CACHE,
-                       /** External shared data directory */
-                       APP_DIR_EXTERNAL_SHARED_DATA,
                };
 
                /**
index b2c3023ead5f13512d9890679c0a30faebe70dd8..6d5d6ea9ea26fe421ca3c9f5c191480439cd0f82 100644 (file)
@@ -56,9 +56,6 @@ const char *TizenAppUtils::GetResourcePath(enum AppSubdirectory dir, const char
        case APP_DIR_EXTERNAL_CACHE:
                prefix = app_get_external_cache_path();
                break;
-       case APP_DIR_EXTERNAL_SHARED_DATA:
-               prefix = app_get_external_shared_data_path();
-               break;
        default:
                dlog_print(DLOG_FATAL, LOG_TAG, "Not handled directory type.");
                return NULL;