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 7204a35  Format: "catch(" -> "catch ("
7204a35 is described below

commit 7204a355ba5ffba21d828ce993b27c81b5565f43
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Apr 18 10:37:12 2023 -0400

    Format: "catch(" -> "catch ("
---
 src/main/java/org/apache/commons/exec/DefaultExecutor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/exec/DefaultExecutor.java 
b/src/main/java/org/apache/commons/exec/DefaultExecutor.java
index 09dc38a..591ddb2 100644
--- a/src/main/java/org/apache/commons/exec/DefaultExecutor.java
+++ b/src/main/java/org/apache/commons/exec/DefaultExecutor.java
@@ -342,7 +342,7 @@ public class DefaultExecutor implements Executor {
         try {
             process = this.launch(command, environment, dir);
         }
-        catch(final IOException e) {
+        catch (final IOException e) {
             if(watchdog != null) {
                 watchdog.failedToStart(e);
             }

Reply via email to