summaryrefslogtreecommitdiff
path: root/editor/editor_folding.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2021-12-06 10:30:37 +0100
committerGitHub <noreply@github.com>2021-12-06 10:30:37 +0100
commit3a7d5a1c64fa6e5a46b49101f3c04104ad9b954b (patch)
tree715a439c8382be924d885b79360f3099c3518d9c /editor/editor_folding.cpp
parent9b41b13370c6203ab43211039b4cc64698275fd6 (diff)
parent89ec3d3bc749e4ec01bdf205447e257207297421 (diff)
Merge pull request #55651 from Calinou/remove-more-debug-prints
Diffstat (limited to 'editor/editor_folding.cpp')
-rw-r--r--editor/editor_folding.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/editor/editor_folding.cpp b/editor/editor_folding.cpp
index 29e3236ac2..c98606730c 100644
--- a/editor/editor_folding.cpp
+++ b/editor/editor_folding.cpp
@@ -262,10 +262,6 @@ void EditorFolding::_do_object_unfolds(Object *p_object, Set<RES> &resources) {
if (E.type == Variant::OBJECT) {
RES res = p_object->get(E.name);
- print_line("res: " + String(E.name) + " valid " + itos(res.is_valid()));
- if (res.is_valid()) {
- print_line("path " + res->get_path());
- }
if (res.is_valid() && !resources.has(res) && res->get_path() != String() && !res->get_path().is_resource_file()) {
resources.insert(res);
_do_object_unfolds(res.ptr(), resources);