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 61fb0108c53b49b5de719a60a53dc1b523f267fc
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sat May 24 09:06:06 2025 -0400

    Checkstyle: Fix VisibilityModifier
---
 src/test/java/org/apache/commons/exec/LogOutputStreamTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java 
b/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java
index 73d66404..bfa2c3ad 100644
--- a/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java
+++ b/src/test/java/org/apache/commons/exec/LogOutputStreamTest.java
@@ -42,7 +42,7 @@ public class LogOutputStreamTest {
 
     private static final class SystemLogOutputStream extends LogOutputStream {
 
-        StringBuffer output = new StringBuffer();
+        private StringBuffer output = new StringBuffer();
 
         private SystemLogOutputStream(final int level) {
             super(level);

Reply via email to