Merge branch 'master' of github.com:antlr/antlr4

This commit is contained in:
Terence Parr 2012-12-02 12:58:48 -08:00
commit 2c871250f4
1 changed files with 0 additions and 10 deletions

View File

@ -114,12 +114,6 @@ public class Antlr4Mojo extends AbstractMojo {
@Parameter(property = "antlr4.treatWarningsAsErrors", defaultValue = "false")
protected boolean treatWarningsAsErrors;
/**
* add config set to DFA states
*/
@Parameter(defaultValue = "false")
protected boolean verbose_dfa;
/**
* use the ATN simulator for all predictions
*/
@ -349,10 +343,6 @@ public class Antlr4Mojo extends AbstractMojo {
args.add("-Werror");
}
if (verbose_dfa) {
args.add("-Xverbose-dfa");
}
if (forceATN) {
args.add("-Xforce-atn");
}