summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2014-10-28 15:19:41 +0000
committerTom Hacohen <tom@stosb.com>2014-10-28 16:26:29 +0000
commit7f7f74d26d278f6c022670c8ca4746bf6ab2b16d (patch)
tree4e12ad12311756588c6e2e75795665b374ce2629
parent9267ff4be193681734c717c595b6e84059f65020 (diff)
downloadefl-7f7f74d26d278f6c022670c8ca4746bf6ab2b16d.tar.gz
Eo comp: Remove dead code following the composite fix.
This removes dead code resulting from Cedric's fix: 3550c3808085175cf322670b290bf0c4a70a2fa7.
-rw-r--r--src/lib/eo/eo.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c
index aed19323d5..1e2339c7bc 100644
--- a/src/lib/eo/eo.c
+++ b/src/lib/eo/eo.c
@@ -600,13 +600,6 @@ _eo_call_resolve(const char *func_name, const Eo_Op op, Eo_Op_Call_Data *call, c
goto end;
}
- if (EINA_UNLIKELY(func == NULL))
- {
- ERR("in %s:%d: you called func '%s' (%d) which is unknown in class '%s'.",
- file, line, func_name, op, klass->desc->name);
- return EINA_FALSE;
- }
-
if (EINA_LIKELY(func->func && func->src))
{
call->func = func->func;