diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-06 10:30:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 10:30:37 +0100 |
commit | 3a7d5a1c64fa6e5a46b49101f3c04104ad9b954b (patch) | |
tree | 715a439c8382be924d885b79360f3099c3518d9c /editor/editor_folding.cpp | |
parent | 9b41b13370c6203ab43211039b4cc64698275fd6 (diff) | |
parent | 89ec3d3bc749e4ec01bdf205447e257207297421 (diff) |
Merge pull request #55651 from Calinou/remove-more-debug-prints
Diffstat (limited to 'editor/editor_folding.cpp')
-rw-r--r-- | editor/editor_folding.cpp | 4 |
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); |