We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2bfa6a commit db7300fCopy full SHA for db7300f
Misc/crc32.java
@@ -20,7 +20,6 @@ public static int crc32(byte[] data) {
20
else
21
crc32 = (crc32 << 1);
22
}
23
- crc32 = crc32 ^ 0;
24
crc32 = Integer.reverse(crc32); //result reflect
25
return crc32 ^ 0xFFFFFFFF; //final xor value
26
0 commit comments