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 63608e0b Make package private class static 63608e0b is described below commit 63608e0b89ce363dc69f2e3311c04ea98a636d5e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Dec 13 09:08:56 2023 -0500 Make package private class static --- 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 3f7d0c42..a96ceb44 100644 --- a/src/main/java/org/apache/commons/exec/CommandLine.java +++ b/src/main/java/org/apache/commons/exec/CommandLine.java @@ -34,7 +34,7 @@ public class CommandLine { /** * Encapsulates a command line argument. */ - final class Argument { + static final class Argument { private final String value; private final boolean handleQuoting;