From cfcdacc5f7bddfe4f0e543c89981f0d8c54d528c Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Fri, 9 Sep 2016 11:38:07 +0100 Subject: [PATCH] Eo: Remove the EO_DEBUG env check. We have DBG for that. --- src/lib/eo/eo.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/lib/eo/eo.c b/src/lib/eo/eo.c index 9b098351fb..a9a994f9d9 100644 --- a/src/lib/eo/eo.c +++ b/src/lib/eo/eo.c @@ -1341,18 +1341,6 @@ efl_class_new(const Efl_Class_Description *desc, const Efl_Class *parent_id, ... } klass->obj_size = extn_data_off; - static unsigned char _eo_debug = 0; - - if (_eo_debug == 0) - { - if (getenv("EO_DEBUG")) _eo_debug = 2; - else _eo_debug = 1; - } - if (_eo_debug == 2) - { - fprintf(stderr, "Eo class '%s' will take %u bytes per object.\n", - desc->name, klass->obj_size); - } { Eo_Id new_id;