removed unnecessary uint cast

master
Vitaly Puzrin 2014-02-20 22:31:37 +04:00
rodzic 18250b5298
commit 4c159cfb16
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -9,7 +9,7 @@ function makeTable() {
for(var k =0; k < 8; k++){
c = ((c&1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));
}
table[n] = c >>> 0;
table[n] = c;
}
return table;