Skip to content

Commit

Permalink
Issue 1763 actually add ASCII 29 to string
Browse files Browse the repository at this point in the history
git-svn-id: https://zxing.googlecode.com/svn/trunk@2874 59b500cc-1b3d-0410-9834-0bbf25fbcc57
  • Loading branch information
[email protected] committed Aug 19, 2013
1 parent 558dad0 commit 5ce0909
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -500,4 +500,4 @@ package com.google.zxing.datamatrix.decoder
}
}

}
}

0 comments on commit 5ce0909

Please sign in to comment.