Eo: Remove the EO_DEBUG env check. We have DBG for that.

This commit is contained in:
Tom Hacohen 2016-09-09 11:38:07 +01:00
parent 284b6a5a3e
commit cfcdacc5f7
1 changed files with 0 additions and 12 deletions

View File

@ -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;