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 1c0e2d4e Javadoc
1c0e2d4e is described below
commit 1c0e2d4ec673b36967f95d03f1d0400b0da7c44a
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 08:44:23 2026 -0400
Javadoc
---
src/main/java/org/apache/commons/daemon/DaemonInitException.java | 2 +-
src/samples/ProcrunService.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/apache/commons/daemon/DaemonInitException.java
b/src/main/java/org/apache/commons/daemon/DaemonInitException.java
index d1347f68..bbe3b79e 100644
--- a/src/main/java/org/apache/commons/daemon/DaemonInitException.java
+++ b/src/main/java/org/apache/commons/daemon/DaemonInitException.java
@@ -45,7 +45,7 @@ public class DaemonInitException extends Exception {
/**
* Gets the message with the cause as a postfix.
*
- * @return the message with the cause as a postfix.
+ * @return The message with the cause as a postfix.
*/
public String getMessageWithCause() {
final Throwable cause = getCause();
diff --git a/src/samples/ProcrunService.java b/src/samples/ProcrunService.java
index 0ee3d2bb..425ee9ed 100644
--- a/src/samples/ProcrunService.java
+++ b/src/samples/ProcrunService.java
@@ -71,7 +71,7 @@ public class ProcrunService implements Runnable {
*
* @param args array of string arguments, may be empty
* @param argnum which argument to extract
- * @return the argument or null
+ * @return The argument or null
*/
private static String getArg(String[] args, int argnum){
if (args.length > argnum) {