GDScriptParser: Remove debug prints.

This commit is contained in:
Andreas Haas 2018-02-02 20:37:59 +01:00
parent f13d034485
commit 95cfa9bf74
No known key found for this signature in database
GPG key ID: B5FFAE1B65FBD2E1

View file

@ -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;
}