alzimmermsft commented on code in PR #159:
URL:
https://github.com/apache/maven-javadoc-plugin/pull/159#discussion_r961560087
##########
src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java:
##########
@@ -183,28 +183,34 @@
/**
* The <code>options</code> file name in the output directory when calling:
- * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files</code>
+ * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files | @errors</code>
*/
protected static final String OPTIONS_FILE_NAME = "options";
/**
* The <code>packages</code> file name in the output directory when
calling:
- * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files</code>
+ * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files | @errors</code>
*/
protected static final String PACKAGES_FILE_NAME = "packages";
/**
* The <code>argfile</code> file name in the output directory when calling:
- * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files</code>
+ * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files | @errors</code>
*/
protected static final String ARGFILE_FILE_NAME = "argfile";
/**
* The <code>files</code> file name in the output directory when calling:
- * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files</code>
+ * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files | @errors</code>
*/
protected static final String FILES_FILE_NAME = "files";
+ /**
+ * The <code>errors</code> file name in the output directory when calling:
+ * <code>javadoc.exe(or .sh) @options @packages | @argfile
| @files | @errors</code>
+ */
+ protected static final String ERRORS_FILE_NAME = "errors";
Review Comment:
Just to clarify, is it the Javadoc for the constant that makes no sense or
the design pattern in general? Asking to know what to change
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]