summaryrefslogtreecommitdiff
path: root/src/badge.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/badge.c')
-rwxr-xr-xsrc/badge.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/badge.c b/src/badge.c
index 3ee7ce5..f333dde 100755
--- a/src/badge.c
+++ b/src/badge.c
@@ -114,19 +114,6 @@ int badge_remove(const char *app_id)
if (app_id == NULL)
return BADGE_ERROR_INVALID_PARAMETER;
- result = _badge_is_existing(app_id, &existing);
-
- if (result != BADGE_ERROR_NONE) {
- ERR("_badge_is_existing failed [%x]", result);
- goto out;
- }
-
- if (existing == false) {
- ERR("app_id is not exist [%s]", app_id);
- result = BADGE_ERROR_NOT_EXIST;
- goto out;
- }
-
caller = _badge_get_pkgname_by_pid();
if (!caller) {
ERR("fail to get caller pkgname");
@@ -171,19 +158,6 @@ int badge_set_count(const char *app_id, unsigned int count)
if (app_id == NULL)
return BADGE_ERROR_INVALID_PARAMETER;
- result = _badge_is_existing(app_id, &existing);
-
- if (result != BADGE_ERROR_NONE) {
- ERR("_badge_is_existing failed [%x]", result);
- goto out;
- }
-
- if (existing == false) {
- ERR("app_id is not exist [%s]", app_id);
- result = BADGE_ERROR_NOT_EXIST;
- goto out;
- }
-
caller = _badge_get_pkgname_by_pid();
if (!caller) {
ERR("fail to get caller pkgname");
@@ -214,19 +188,6 @@ int badge_set_display(const char *app_id, unsigned int is_display)
if (app_id == NULL)
return BADGE_ERROR_INVALID_PARAMETER;
- result = _badge_is_existing(app_id, &existing);
-
- if (result != BADGE_ERROR_NONE) {
- ERR("_badge_is_existing failed [%x]", result);
- goto out;
- }
-
- if (existing == false) {
- ERR("app_id is not exist [%s]", app_id);
- result = BADGE_ERROR_NOT_EXIST;
- goto out;
- }
-
caller = _badge_get_pkgname_by_pid();
if (!caller) {
ERR("fail to get caller pkgname");