diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-06-19 13:10:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-19 13:10:23 +0200 |
commit | e76f744c36234b5b4043c68c7d20a3d2e22d7a8c (patch) | |
tree | 9b049c7657e264063fb57419efe0137a9a72a10e /modules/gdscript | |
parent | df202127e3096c7e8b5188c4d29f38b03cae1658 (diff) | |
parent | 422fac5066b704cb2bf251000869b5b94e188c85 (diff) |
Merge pull request #5283 from djrm/remove_prints
Removed lots of prints
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/gd_editor.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/gdscript/gd_editor.cpp b/modules/gdscript/gd_editor.cpp index d5bf6463c6..b1da7e782c 100644 --- a/modules/gdscript/gd_editor.cpp +++ b/modules/gdscript/gd_editor.cpp @@ -497,11 +497,6 @@ static Ref<Reference> _get_parent_class(GDCompletionContext& context) { int base_idx = GDScriptLanguage::get_singleton()->get_global_map()[base]; native = GDScriptLanguage::get_singleton()->get_global_array()[base_idx]; - if (!native.is_valid()) { - - print_line("Global not a class: '"+base+"'"); - - } return native; } @@ -2124,10 +2119,8 @@ Error GDScriptLanguage::complete_code(const String& p_code, const String& p_base switch(p.get_completion_type()) { case GDParser::COMPLETION_NONE: { - print_line("No completion"); } break; case GDParser::COMPLETION_BUILT_IN_TYPE_CONSTANT: { - print_line("Built in type constant"); List<StringName> constants; Variant::get_numeric_constants_for_type(p.get_completion_built_in_constant(),&constants); for(List<StringName>::Element *E=constants.front();E;E=E->next()) { @@ -2143,7 +2136,6 @@ Error GDScriptLanguage::complete_code(const String& p_code, const String& p_base _find_identifiers(context,p.get_completion_line(),isfunction,options); } break; case GDParser::COMPLETION_PARENT_FUNCTION: { - print_line("parent function"); } break; case GDParser::COMPLETION_METHOD: |