Skip to content

Commit

Permalink
Format: "catch(" -> "catch ("
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Apr 18, 2023
1 parent 437fb4a commit 7204a35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/exec/DefaultExecutor.java
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private int executeInternal(final CommandLine command, final Map<String, String>
try {
process = this.launch(command, environment, dir);
}
catch(final IOException e) {
catch (final IOException e) {
if(watchdog != null) {
watchdog.failedToStart(e);
}
Expand Down

0 comments on commit 7204a35

Please sign in to comment.