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-io.git

commit d821156cad6859e14c34e140fa918fad290a8319
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Mar 3 07:45:32 2025 -0500

    Test fixture doesn't need to be public
---
 .../org/apache/commons/io/channels/NonBlockingFileChannelProxy.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/io/channels/NonBlockingFileChannelProxy.java 
b/src/test/java/org/apache/commons/io/channels/NonBlockingFileChannelProxy.java
index 31ec1fe93..c88cfa854 100644
--- 
a/src/test/java/org/apache/commons/io/channels/NonBlockingFileChannelProxy.java
+++ 
b/src/test/java/org/apache/commons/io/channels/NonBlockingFileChannelProxy.java
@@ -25,7 +25,7 @@
 /**
  * Simulates a non-blocking file channel by returning 0 from reads every other 
call as allowed by {@link ReadableByteChannel} and {@link FileChannel}.
  */
-public class NonBlockingFileChannelProxy extends FileChannelProxy {
+class NonBlockingFileChannelProxy extends FileChannelProxy {
 
     boolean toggleRead0;
 

Reply via email to