This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-exec.git
The following commit(s) were added to refs/heads/master by this push: new 3bf120d Javadoc 3bf120d is described below commit 3bf120d5574a15241499de72fd9a0887838132e4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Nov 11 16:13:58 2023 -0500 Javadoc --- src/main/java/org/apache/commons/exec/ExecuteException.java | 4 ++-- src/main/java/org/apache/commons/exec/PumpStreamHandler.java | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/exec/ExecuteException.java b/src/main/java/org/apache/commons/exec/ExecuteException.java index 9358fb0..86f7f4d 100644 --- a/src/main/java/org/apache/commons/exec/ExecuteException.java +++ b/src/main/java/org/apache/commons/exec/ExecuteException.java @@ -40,7 +40,7 @@ public class ExecuteException extends IOException { private final int exitValue; /** - * Construct a new exception with the specified detail message. + * Constructs a new exception with the specified detail message. * * @param message * The detail message @@ -53,7 +53,7 @@ public class ExecuteException extends IOException { } /** - * Construct a new exception with the specified detail message and cause. + * Constructs a new exception with the specified detail message and cause. * * @param message * The detail message diff --git a/src/main/java/org/apache/commons/exec/PumpStreamHandler.java b/src/main/java/org/apache/commons/exec/PumpStreamHandler.java index e37633d..19e3808 100644 --- a/src/main/java/org/apache/commons/exec/PumpStreamHandler.java +++ b/src/main/java/org/apache/commons/exec/PumpStreamHandler.java @@ -54,14 +54,14 @@ public class PumpStreamHandler implements ExecuteStreamHandler { private IOException caught; /** - * Construct a new <CODE>PumpStreamHandler</CODE>. + * Constructs a new <CODE>PumpStreamHandler</CODE>. */ public PumpStreamHandler() { this(System.out, System.err); } /** - * Construct a new <CODE>PumpStreamHandler</CODE>. + * Constructs a new <CODE>PumpStreamHandler</CODE>. * * @param outAndErr the output/error <CODE>OutputStream</CODE>. */ @@ -70,7 +70,7 @@ public class PumpStreamHandler implements ExecuteStreamHandler { } /** - * Construct a new <CODE>PumpStreamHandler</CODE>. + * Constructs a new <CODE>PumpStreamHandler</CODE>. * * @param out the output <CODE>OutputStream</CODE>. * @param err the error <CODE>OutputStream</CODE>. @@ -80,7 +80,7 @@ public class PumpStreamHandler implements ExecuteStreamHandler { } /** - * Construct a new <CODE>PumpStreamHandler</CODE>. + * Constructs a new <CODE>PumpStreamHandler</CODE>. * * @param out the output <CODE>OutputStream</CODE>. * @param err the error <CODE>OutputStream</CODE>.