Skip to content

Commit 2d678c2

Browse files
committed
lvar hides another.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1812846 13f79535-47bb-0310-9956-ffa450edef68
1 parent 52f45c2 commit 2d678c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/codec/digest/PureJavaCrc32Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ private static BenchResult doBench(final Class<? extends Checksum> clazz,
331331
public void run() {
332332
final long st = System.nanoTime();
333333
crc.reset();
334-
for (int i = 0; i < trials; i++) {
334+
for (int trialIndex = 0; trialIndex < trials; trialIndex++) {
335335
crc.update(bytes, 0, size);
336336
}
337337
final long et = System.nanoTime();

0 commit comments

Comments
 (0)