Fixing a comment.

git-svn-id: https://zxing.googlecode.com/svn/trunk@607 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
mschulkind 2008-10-08 20:52:58 +00:00
parent af555d2409
commit 76b4fa1910

View file

@ -57,7 +57,7 @@ public final class GF256 {
for (int i = 0; i < 255; 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});
one = new GF256Poly(this, new int[]{1});
}