Rename the force_atn parameter to forceATN

This commit is contained in:
Sam Harwell 2012-12-01 15:40:39 -06:00
parent 37e67f4224
commit 41361b65e3
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ public class Antlr4Mojo extends AbstractMojo {
* use the ATN simulator for all predictions
*/
@Parameter(defaultValue = "false")
protected boolean force_atn;
protected boolean forceATN;
/* --------------------------------------------------------------------
* The following are Maven specific parameters, rather than specificlly
@ -313,7 +313,7 @@ public class Antlr4Mojo extends AbstractMojo {
args.add("-Xverbose-dfa");
}
if (force_atn) {
if (forceATN) {
args.add("-Xforce-atn");
}