浏览代码

GDScriptParser: Remove debug prints.

Andreas Haas 7 年之前
父节点
当前提交
95cfa9bf74
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      modules/gdscript/gdscript_parser.cpp

+ 0 - 2
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;
 			}