mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Issue 1763 actually add ASCII 29 to string
git-svn-id: https://zxing.googlecode.com/svn/trunk@2874 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
558dad051e
commit
5ce090956d
|
@ -143,7 +143,7 @@ package com.google.zxing.datamatrix.decoder
|
|||
return BASE256_ENCODE;
|
||||
} else if (oneByte == 232) {
|
||||
// FNC1
|
||||
String.fromCharCode(29);// translate as ASCII 29
|
||||
result.Append(String.fromCharCode(29));// translate as ASCII 29
|
||||
} else if ((oneByte == 233) || (oneByte == 234))
|
||||
{ // Structured Append, Reader Programming
|
||||
// Ignore these symbols for now
|
||||
|
@ -500,4 +500,4 @@ package com.google.zxing.datamatrix.decoder
|
|||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue