diff --git a/legacy/eobj/lib/Eobj.h b/legacy/eobj/lib/Eobj.h index 44ef0c42a1..0544dfd873 100644 --- a/legacy/eobj/lib/Eobj.h +++ b/legacy/eobj/lib/Eobj.h @@ -95,7 +95,6 @@ EAPI Eina_Bool eobj_do_internal(Eobj *obj, ...); EAPI Eina_Bool eobj_super_do(Eobj *obj, Eobj_Op op, ...); EAPI const Eobj_Class *eobj_class_get(Eobj *obj); -EAPI const Eobj_Class *eobj_class_parent_get(const Eobj_Class *klass); EAPI const char *eobj_class_name_get(const Eobj_Class *klass); EAPI void eobj_constructor_super(Eobj *obj); diff --git a/legacy/eobj/lib/eobj.c b/legacy/eobj/lib/eobj.c index 83cf38b16c..18b3644680 100644 --- a/legacy/eobj/lib/eobj.c +++ b/legacy/eobj/lib/eobj.c @@ -435,12 +435,6 @@ eobj_class_get(Eobj *obj) return obj->klass; } -EAPI const Eobj_Class * -eobj_class_parent_get(const Eobj_Class *klass) -{ - return klass->parent; -} - EAPI const char * eobj_class_name_get(const Eobj_Class *klass) {