mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Issue 822 more small DM fixes from user
git-svn-id: https://zxing.googlecode.com/svn/trunk@1832 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
ce2bfa78f7
commit
1f82b11d01
|
@ -221,7 +221,7 @@ final class DecodedBitStreamParser {
|
|||
result.append((char) (cValue + 128));
|
||||
upperShift = false;
|
||||
} else {
|
||||
result.append(cValue);
|
||||
result.append((char) cValue);
|
||||
}
|
||||
shift = 0;
|
||||
break;
|
||||
|
@ -305,7 +305,7 @@ final class DecodedBitStreamParser {
|
|||
result.append((char) (cValue + 128));
|
||||
upperShift = false;
|
||||
} else {
|
||||
result.append(cValue);
|
||||
result.append((char) cValue);
|
||||
}
|
||||
shift = 0;
|
||||
break;
|
||||
|
@ -320,7 +320,7 @@ final class DecodedBitStreamParser {
|
|||
result.append(c40char);
|
||||
}
|
||||
} else if (cValue == 27) { // FNC1
|
||||
throw FormatException.getFormatInstance();
|
||||
// ignore
|
||||
} else if (cValue == 30) { // Upper Shift
|
||||
upperShift = true;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue