From a082e4967192e3735e979aee42e003401409053e Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 15 Jul 2020 15:51:13 +0200 Subject: Cleanup: remove debug prints. --- source/blender/editors/object/object_relations.c | 8 -------- source/blender/editors/space_outliner/outliner_tools.c | 3 --- 2 files changed, 11 deletions(-) (limited to 'source/blender') diff --git a/source/blender/editors/object/object_relations.c b/source/blender/editors/object/object_relations.c index 945c7e87eb1..94f85641a73 100644 --- a/source/blender/editors/object/object_relations.c +++ b/source/blender/editors/object/object_relations.c @@ -2397,14 +2397,6 @@ static int make_override_library_exec(bContext *C, wmOperator *op) /* Note that this call will also free the main relations data we created above. */ BKE_lib_override_library_dependencies_tag(bmain, id_root, LIB_TAG_DOIT, false); - ID *id; - FOREACH_MAIN_ID_BEGIN (bmain, id) { - if (id->tag & LIB_TAG_DOIT && id->lib != NULL) { - printf("ID %s tagged for override\n", id->name); - } - } - FOREACH_MAIN_ID_END; - success = BKE_lib_override_library_create_from_tag(bmain); if (success) { diff --git a/source/blender/editors/space_outliner/outliner_tools.c b/source/blender/editors/space_outliner/outliner_tools.c index f0287984268..de6f169e574 100644 --- a/source/blender/editors/space_outliner/outliner_tools.c +++ b/source/blender/editors/space_outliner/outliner_tools.c @@ -763,8 +763,6 @@ static void id_override_library_cb(bContext *C, id_root->tag |= LIB_TAG_DOIT; - printf("%s: Tagging root id %s\n", __func__, id_root->name); - /* For now, remapp all local usages of linked ID to local override one here. */ ID *id_iter; FOREACH_MAIN_ID_BEGIN (bmain, id_iter) { @@ -787,7 +785,6 @@ static void id_override_library_cb(bContext *C, break; } te->store_elem->id->tag |= LIB_TAG_DOIT; - printf("%s: Tagging parent id %s\n", __func__, te->store_elem->id->name); } BKE_lib_override_library_dependencies_tag(bmain, id_root, LIB_TAG_DOIT, true); BKE_lib_override_library_create_from_tag(bmain); -- cgit v1.2.3