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:
srowen@gmail.com 2013-08-19 12:23:09 +00:00
parent 558dad051e
commit 5ce090956d

View file

@ -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
}
}
}
}