mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Issue #127 : fix typo in table of PDF417 punctuation chars
This commit is contained in:
parent
02e0512a62
commit
151ad6818b
|
@ -59,7 +59,7 @@ final class DecodedBitStreamParser {
|
||||||
private static final int PAL = 29;
|
private static final int PAL = 29;
|
||||||
|
|
||||||
private static final char[] PUNCT_CHARS = {
|
private static final char[] PUNCT_CHARS = {
|
||||||
';', '<', '>', '@', '[', '\\', '}', '_', '`', '~', '!',
|
';', '<', '>', '@', '[', '\\', ']', '_', '`', '~', '!',
|
||||||
'\r', '\t', ',', ':', '\n', '-', '.', '$', '/', '"', '|', '*',
|
'\r', '\t', ',', ':', '\n', '-', '.', '$', '/', '"', '|', '*',
|
||||||
'(', ')', '?', '{', '}', '\''};
|
'(', ')', '?', '{', '}', '\''};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue