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 bfeb7742079211da527a3b4ce5444215e0b179ba
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Mar 3 07:36:57 2025 -0500

    Fix test fixture
---
 .../java/org/apache/commons/io/channels/NonBlockingFileChannelProxy.java | 1 -
 1 file changed, 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 f391a3b05..31ec1fe93 100644
--- 
a/src/test/java/org/apache/commons/io/channels/NonBlockingFileChannelProxy.java
+++ 
b/src/test/java/org/apache/commons/io/channels/NonBlockingFileChannelProxy.java
@@ -50,7 +50,6 @@ public int read(final ByteBuffer dst, final long position) 
throws IOException {
 
     @Override
     public long read(final ByteBuffer[] dsts, final int offset, final int 
length) throws IOException {
-        flipState();
         return flipState() ? 0 : super.read(dsts, offset, length);
     }
 }

Reply via email to