mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
Oops, fix fat finger typo from last change
This commit is contained in:
parent
08e5431d99
commit
a1a51de290
|
@ -43,7 +43,7 @@ public final class ModulusGF {
|
|||
expTable[i] = x;
|
||||
x = (x * generator) % modulus;
|
||||
}
|
||||
for (int i = 0; i < modulus - e1; i++) {
|
||||
for (int i = 0; i < modulus - 1; i++) {
|
||||
logTable[expTable[i]] = i;
|
||||
}
|
||||
// logTable[0] == 0 but this should never be used
|
||||
|
|
Loading…
Reference in a new issue