seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=38f5a7c3b04ff17594062b143b664aeecc880f82

commit 38f5a7c3b04ff17594062b143b664aeecc880f82
Author: Daniel Juyung Seo <seojuyu...@gmail.com>
Date:   Tue Mar 10 22:51:17 2015 +0900

    atspi: Remove unnecessary null check.
    
    win could not be null due to EINA_LIST_FOREACH design.
---
 src/lib/elm_atspi_app_object.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/lib/elm_atspi_app_object.c b/src/lib/elm_atspi_app_object.c
index 08932cf..12a693a 100644
--- a/src/lib/elm_atspi_app_object.c
+++ b/src/lib/elm_atspi_app_object.c
@@ -33,7 +33,6 @@ 
_elm_atspi_app_object_elm_interface_atspi_accessible_children_get(Eo *obj EINA_U
 
    EINA_LIST_FOREACH(_elm_win_list, l, win)
      {
-        if (!win) continue;
         if (eo_isa(win, ELM_INTERFACE_ATSPI_ACCESSIBLE_MIXIN))
           accs = eina_list_append(accs, win);
      }

-- 


Reply via email to