Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[MJAVADOC-726] trivial Javadoc fixes to test state of CI #244

Merged
merged 1 commit into from
Sep 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import org.apache.maven.reporting.MavenReportException;

/**
* Generates documentation for the <code>Java code</code> in an <b>NON aggregator</b> project using the standard
* Generates documentation for the <code>Java code</code> in a <b>NON aggregator</b> project using the standard
* <a href="https://docs.oracle.com/en/java/javase/17/docs/specs/man/javadoc.html">Javadoc Tool</a>.
*
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
Expand Down Expand Up @@ -269,7 +269,7 @@ public void setReportOutputDirectory(File reportOutputDirectory) {
}

/**
* @param theDestDir The destination directory.
* @param theDestDir the destination directory
*/
public void setDestDir(String theDestDir) {
this.destDir = theDestDir;
Expand Down Expand Up @@ -316,8 +316,8 @@ public void doExecute() throws MojoExecutionException, MojoFailureException {
/**
* Gets the resource bundle for the specified locale.
*
* @param locale The locale of the currently generated report.
* @return The resource bundle for the requested locale.
* @param locale the locale of the currently generated report
* @return the resource bundle for the requested locale
*/
private ResourceBundle getBundle(Locale locale) {
return ResourceBundle.getBundle("javadoc-report", locale, getClass().getClassLoader());
Expand Down