Issue 1335 remove dead store

git-svn-id: https://zxing.googlecode.com/svn/trunk@2391 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2012-08-14 21:27:23 +00:00
parent ea08f0348c
commit eb0ac26881
2 changed files with 0 additions and 4 deletions

View file

@ -168,7 +168,6 @@ public final class Decoder {
} else {
if (table == Table.BINARY) {
if (endIndex - startIndex < 8) {
end = true;
break;
}
code = readCode(correctedBits, startIndex, 8);
@ -184,7 +183,6 @@ public final class Decoder {
}
if (endIndex - startIndex < size) {
end = true;
break;
}

View file

@ -228,7 +228,6 @@ Ref<String> Decoder::getEncodedData(Ref<zxing::BitArray> correctedBits) {
} else {
if (table == BINARY) {
if (endIndex - startIndex < 8) {
end = true;
break;
}
code = readCode(correctedBits, startIndex, 8);
@ -243,7 +242,6 @@ Ref<String> Decoder::getEncodedData(Ref<zxing::BitArray> correctedBits) {
}
if (endIndex - startIndex < size) {
end = true;
break;
}