Skip to content

Commit c823576

Browse files
committed
Use final.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1811617 13f79535-47bb-0310-9956-ffa450edef68
1 parent 1f6296c commit c823576

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ private void checkOnBytes(final byte[] bytes, final boolean print) {
6969
ours.reset();
7070
checkSame();
7171

72-
for (byte b : bytes) {
72+
for (final byte b : bytes) {
7373
ours.update(b);
7474
theirs.update(b);
7575
checkSame();
@@ -347,10 +347,10 @@ public void run() {
347347
}
348348
}
349349

350-
for (Thread thread : threads) {
350+
for (final Thread thread : threads) {
351351
thread.start();
352352
}
353-
for (Thread thread : threads) {
353+
for (final Thread thread : threads) {
354354
thread.join();
355355
}
356356

0 commit comments

Comments
 (0)