This is an automated email from the ASF dual-hosted git repository.
elharo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-acr-plugin.git
The following commit(s) were added to refs/heads/master by this push:
new d52c7cc Follow Oracle Javadoc conventions (#126)
d52c7cc is described below
commit d52c7cc0242c8cbb2626a254678efa2672ec0c27
Author: Elliotte Rusty Harold <[email protected]>
AuthorDate: Wed Dec 10 22:08:03 2025 +0000
Follow Oracle Javadoc conventions (#126)
* Follow Oracle Javadoc conventions
* dehyphenate
---
src/main/java/org/apache/maven/plugins/acr/AcrMojo.java | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/maven/plugins/acr/AcrMojo.java
b/src/main/java/org/apache/maven/plugins/acr/AcrMojo.java
index 8a17037..e7ee132 100644
--- a/src/main/java/org/apache/maven/plugins/acr/AcrMojo.java
+++ b/src/main/java/org/apache/maven/plugins/acr/AcrMojo.java
@@ -172,7 +172,9 @@ public class AcrMojo extends AbstractMojo {
this.mavenFileFilter = mavenFileFilter;
}
- /** {@inheritDoc} */
+ /**
+ * {@inheritDoc}
+ */
public void execute() throws MojoExecutionException {
if (getLog().isInfoEnabled()) {
getLog().info("Building JavaEE Application client: " + jarName);
@@ -278,10 +280,10 @@ public class AcrMojo extends AbstractMojo {
}
/**
- * Get the encoding from an XML-file.
+ * Get the encoding from an XML file.
*
- * @param xmlFile the XML-file
- * @return The encoding of the XML-file, or UTF-8 if it's not specified in
the file
+ * @param xmlFile the XML file
+ * @return the encoding of the XML file, or UTF-8 if it's not specified in
the file
* @throws IOException if an error occurred while reading the file
*/
private String getEncoding(Path xmlFile) throws IOException {