Do not process grammars following an error during parsing (fixes #507)

This commit is contained in:
Sam Harwell 2014-03-23 16:31:14 -05:00
parent 7daae3a89b
commit 3e054df98b
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ public class Tool {
System.out.println(dep.getDependencies().render());
}
else {
else if (errMgr.getNumErrors() == 0) {
process(g, true);
}
}