genlist: Removed unnecessary condition check.

Summary:
Removed condition check from _elm_genlist_elm_widget_item_loop_enabled_set()

Reviewers: seoz

CC: sachin.dev

Differential Revision: https://phab.enlightenment.org/D1144
This commit is contained in:
Shobhit 2014-07-10 00:39:50 +09:00 committed by Daniel Juyung Seo
parent 05854d4156
commit 32c3bf41b5
1 changed files with 0 additions and 1 deletions

View File

@ -7535,7 +7535,6 @@ _elm_genlist_elm_widget_focused_item_get(Eo *obj EINA_UNUSED, Elm_Genlist_Data *
EOLIAN static void
_elm_genlist_elm_widget_item_loop_enabled_set(Eo *obj EINA_UNUSED, Elm_Genlist_Data *sd, Eina_Bool enable)
{
if (sd->item_loop_enable == enable) return;
sd->item_loop_enable = !!enable;
}