mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Fixing a comment.
git-svn-id: https://zxing.googlecode.com/svn/trunk@607 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
af555d2409
commit
76b4fa1910
|
@ -57,7 +57,7 @@ public final class GF256 {
|
||||||
for (int i = 0; i < 255; i++) {
|
for (int i = 0; i < 255; i++) {
|
||||||
log_table[exp_table[i]] = i;
|
log_table[exp_table[i]] = i;
|
||||||
}
|
}
|
||||||
// log[0] == 0 but this should never be used
|
// log_table[0] == 0 but this should never be used
|
||||||
zero = new GF256Poly(this, new int[]{0});
|
zero = new GF256Poly(this, new int[]{0});
|
||||||
one = new GF256Poly(this, new int[]{1});
|
one = new GF256Poly(this, new int[]{1});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue