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 65c061efd7848f1c80459e271be921f6dd461810 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 24 10:42:35 2025 -0400 Replace org.apache.commons.exec.CommandLine.arguments from Vector to ArrayList --- src/main/java/org/apache/commons/exec/CommandLine.java | 1 - 1 file changed, 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 dc4549a3..42ef9162 100644 --- a/src/main/java/org/apache/commons/exec/CommandLine.java +++ b/src/main/java/org/apache/commons/exec/CommandLine.java @@ -27,7 +27,6 @@ import java.util.List; import java.util.Map; import java.util.Objects; import java.util.StringTokenizer; -import java.util.Vector; import org.apache.commons.exec.util.StringUtils;