Skip to content

Commit 979dc05

Browse files
committed
1 parent de7f29e commit 979dc05

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/org/apache/commons/codec/digest/PureJavaCrc32C.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public class PureJavaCrc32C implements Checksum {
5454
private static final int T8_6_START = 6 * 256;
5555
private static final int T8_7_START = 7 * 256;
5656

57+
// @formatter:off
5758
private static final int[] T = {
5859
/* T8_0 */
5960
0x00000000, 0xF26B8303, 0xE13B70F7, 0x1350F3F4,
@@ -576,6 +577,7 @@ public class PureJavaCrc32C implements Checksum {
576577
0xE54C35A1, 0xAC704886, 0x7734CFEF, 0x3E08B2C8,
577578
0xC451B7CC, 0x8D6DCAEB, 0x56294D82, 0x1F1530A5
578579
};
580+
// @formatter:on
579581

580582
/** The current CRC value, bit-flipped */
581583
private int crc;

0 commit comments

Comments
 (0)