Remove logging code which has a detrimental performance impact on processing recursive imports

This commit is contained in:
Sam Harwell 2014-09-25 21:02:48 -05:00
parent e4c193005e
commit 4b7873783d
1 changed files with 0 additions and 2 deletions

View File

@ -377,11 +377,9 @@ public class Grammar implements AttributeResolver {
if ( t.getType()==ANTLRParser.ASSIGN ) {
t = (GrammarAST)t.getChild(1);
importedGrammarName = t.getText();
tool.log("grammar", "import "+ importedGrammarName);
}
else if ( t.getType()==ANTLRParser.ID ) {
importedGrammarName = t.getText();
tool.log("grammar", "import " + t.getText());
}
Grammar g;
try {