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
commit 7b582ad0767b6f8a0f91618129a9f522bce8c5bf Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 24 10:37:31 2025 -0400 Replace org.apache.commons.exec.CommandLine.arguments from Vector to ArrayList --- src/main/java/org/apache/commons/exec/CommandLine.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/exec/CommandLine.java b/src/main/java/org/apache/commons/exec/CommandLine.java index c526a782..dc4549a3 100644 --- a/src/main/java/org/apache/commons/exec/CommandLine.java +++ b/src/main/java/org/apache/commons/exec/CommandLine.java @@ -174,7 +174,7 @@ public class CommandLine { /** * The arguments of the command. */ - private final List<Argument> arguments = new Vector<>(); + private final List<Argument> arguments = new ArrayList<>(); /** * The program to execute.