Skip to content

Commit 121e33b

Browse files
committed
Use final
1 parent 72f5b7e commit 121e33b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/commons/io/jmh/QueueStreamBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void output() throws Exception {
6565

6666
@Benchmark
6767
@Group("streams")
68-
public void input(Blackhole bh) throws Exception {
68+
public void input(final Blackhole bh) throws Exception {
6969
int received = 0;
7070
while (received < CAPACITY) {
7171
final int len = inputStream.read(output, 0, BUFFER_SIZE);

0 commit comments

Comments
 (0)