diff options
author | Andreas Haas <liu.gam3@gmail.com> | 2018-02-02 20:37:59 +0100 |
---|---|---|
committer | Andreas Haas <liu.gam3@gmail.com> | 2018-02-02 20:37:59 +0100 |
commit | 95cfa9bf74774110ba01a3987a22c9d7d616c1c6 (patch) | |
tree | 730730cf15c5ee76d215f2286269389bb0f28acf | |
parent | f13d0344853edda03d56e44365a90ad4eed22883 (diff) |
GDScriptParser: Remove debug prints.
-rw-r--r-- | modules/gdscript/gdscript_parser.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp index c67214638d..1392323d56 100644 --- a/modules/gdscript/gdscript_parser.cpp +++ b/modules/gdscript/gdscript_parser.cpp @@ -95,8 +95,6 @@ bool GDScriptParser::_enter_indent_block(BlockNode *p_block) { int indent = tokenizer->get_token_line_indent(); int current = tab_level.back()->get(); if (indent <= current) { - print_line("current: " + itos(current) + " indent: " + itos(indent)); - print_line("less than current"); return false; } |