Skip to content
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