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 121e33b83c471d0f5e0874e7e5540c9ecc07d2bb Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jun 12 12:11:07 2025 -0400 Use final --- src/test/java/org/apache/commons/io/jmh/QueueStreamBenchmark.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/io/jmh/QueueStreamBenchmark.java b/src/test/java/org/apache/commons/io/jmh/QueueStreamBenchmark.java index 911d49053..a42437f74 100644 --- a/src/test/java/org/apache/commons/io/jmh/QueueStreamBenchmark.java +++ b/src/test/java/org/apache/commons/io/jmh/QueueStreamBenchmark.java @@ -65,7 +65,7 @@ public void output() throws Exception { @Benchmark @Group("streams") - public void input(Blackhole bh) throws Exception { + public void input(final Blackhole bh) throws Exception { int received = 0; while (received < CAPACITY) { final int len = inputStream.read(output, 0, BUFFER_SIZE);