forked from jasder/antlr
Add closing p tag
After discussion with sharell it turns out that some of the automated translation tools used for creating other ANTLR language targets look for closing tags (for one reason or another), so for this project the practice is to explicitly close all tags.
This commit is contained in:
parent
26e2c72c97
commit
7bcb434c6f
|
@ -65,7 +65,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
|
|||
* {@inheritDoc}
|
||||
* <p>
|
||||
* This implementation passes the message to the Maven log.
|
||||
*
|
||||
* </p>
|
||||
* @param message The message to send to Maven
|
||||
*/
|
||||
@Override
|
||||
|
@ -80,7 +80,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
|
|||
* {@inheritDoc}
|
||||
* <p>
|
||||
* This implementation passes the message to the Maven log.
|
||||
*
|
||||
* </p>
|
||||
* @param message The message to send to Maven.
|
||||
*/
|
||||
@Override
|
||||
|
@ -103,7 +103,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
|
|||
* {@inheritDoc}
|
||||
* <p>
|
||||
* This implementation passes the message to the Maven log.
|
||||
*
|
||||
* </p>
|
||||
* @param message
|
||||
*/
|
||||
@Override
|
||||
|
|
|
@ -150,6 +150,7 @@ public class Antlr4Mojo extends AbstractMojo {
|
|||
* A set of Ant-like inclusion patterns used to select files from the source
|
||||
* directory for processing. By default, the pattern
|
||||
* <code>**/*.g4</code> is used to select grammar files.
|
||||
* </p>
|
||||
*/
|
||||
@Parameter
|
||||
protected Set<String> includes = new HashSet<String>();
|
||||
|
|
Loading…
Reference in New Issue