forked from jasder/antlr
Generate javadoc and fix warning
This commit is contained in:
parent
348adb5398
commit
3117a4e9e1
|
@ -330,6 +330,20 @@
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>2.9</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
||||||
</build>
|
</build>
|
||||||
|
|
|
@ -55,7 +55,7 @@ public class Antlr4ErrorLog implements ANTLRToolListener {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends an informational message to the Maven log sink.
|
* Sends an informational message to the Maven log sink.
|
||||||
* @param s The message to send to Maven
|
* @param message The message to send to Maven
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void info(String message) {
|
public void info(String message) {
|
||||||
|
|
Loading…
Reference in New Issue