elm_map: remove unnecessary error message in destructor

there is no check for the existence of this file so this will error most times
from it not existing

Signed-off-by: Mike Blumenkrantz <zmike@osg.samsung.com>
This commit is contained in:
Cedric BAIL 2018-03-13 11:39:16 -04:00
parent 24db9f60be
commit 0a6c302e9a
1 changed files with 1 additions and 2 deletions

View File

@ -4231,8 +4231,7 @@ _elm_map_efl_canvas_group_group_del(Eo *obj, Elm_Map_Data *sd)
char buf[4096];
snprintf(buf, sizeof(buf), "%s" CACHE_ROOT, efreet_cache_home_get());
if (!ecore_file_recursive_rm(buf))
ERR("Deletion of %s failed", buf);
ecore_file_recursive_rm(buf);
}
ecore_timer_del(sd->loaded_timer);