This is an automated email from the ASF dual-hosted git repository.

garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git


The following commit(s) were added to refs/heads/master by this push:
     new 3dd14fea Javadoc
3dd14fea is described below

commit 3dd14feaff215fb14624bdbde3edfe730f0ab1c7
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 11:21:59 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/daemon/DaemonInitException.java  | 6 +++---
 src/main/java/org/apache/commons/daemon/support/DaemonLoader.java | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/daemon/DaemonInitException.java 
b/src/main/java/org/apache/commons/daemon/DaemonInitException.java
index bbe3b79e..2c9d15ba 100644
--- a/src/main/java/org/apache/commons/daemon/DaemonInitException.java
+++ b/src/main/java/org/apache/commons/daemon/DaemonInitException.java
@@ -26,7 +26,7 @@ public class DaemonInitException extends Exception {
     /**
      * Constructs a new exception with the given message.
      *
-     * @param message the detail message accessible with {@link #getMessage()}.
+     * @param message The detail message accessible with {@link #getMessage()}.
      */
     public DaemonInitException(final String message) {
         super(message);
@@ -35,8 +35,8 @@ public class DaemonInitException extends Exception {
     /**
      * Constructs a new exception with the given detail and cause.
      *
-     * @param message the detail message accessible with {@link #getMessage()}.
-     * @param cause the cause accessible with {@link #getCause()}.
+     * @param message The detail message accessible with {@link #getMessage()}.
+     * @param cause The cause accessible with {@link #getCause()}.
      */
     public DaemonInitException(final String message, final Throwable cause) {
         super(message, cause);
diff --git a/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java 
b/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java
index 15db39b3..03eb826c 100644
--- a/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java
+++ b/src/main/java/org/apache/commons/daemon/support/DaemonLoader.java
@@ -443,7 +443,7 @@ public final class DaemonLoader
         /**
          * Sets the daemon controller.
          *
-         * @param controller the daemon controller.
+         * @param controller The daemon controller.
          */
         public void setController(final DaemonController controller)
         {

Reply via email to