fixed a small mistake

This commit is contained in:
Pusty
2017-10-03 04:27:09 +02:00
committed by GitHub
parent f2bfa6a1be
commit db7300f191

View File

@ -20,7 +20,6 @@ public class crc32 {
else else
crc32 = (crc32 << 1); crc32 = (crc32 << 1);
} }
crc32 = crc32 ^ 0;
crc32 = Integer.reverse(crc32); //result reflect crc32 = Integer.reverse(crc32); //result reflect
return crc32 ^ 0xFFFFFFFF; //final xor value return crc32 ^ 0xFFFFFFFF; //final xor value
} }