From ce914a31f94792ce9c6ef4085d09b60345592a3e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 24 Aug 2014 13:23:19 -0400 Subject: [PATCH] Parser - Code cleanup of ::findTerminator. --- src/Parser.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Parser.cpp b/src/Parser.cpp index a6b015b61..5af4ea416 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -355,7 +355,6 @@ void Parser::findBinary () // all args in the raw state. void Parser::findTerminator () { - context.debug ("Parser::findTerminator"); bool found = false; std::vector prune; @@ -387,9 +386,6 @@ void Parser::findTerminator () // Prune branches outside the loop. for (i = prune.begin (); i != prune.end (); ++i) (*i)->removeAllBranches (); - - if (prune.size ()) - context.debug (_tree->dump ()); } ////////////////////////////////////////////////////////////////////////////////