mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Continue recursion even if finding a duplicate of a prior barcode
git-svn-id: https://zxing.googlecode.com/svn/trunk@2519 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
cfbabe908b
commit
29934305d7
|
@ -86,10 +86,9 @@ public final class GenericMultipleBarcodeReader implements MultipleBarcodeReader
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (alreadyFound) {
|
if (!alreadyFound) {
|
||||||
return;
|
results.add(translateResultPoints(result, xOffset, yOffset));
|
||||||
}
|
}
|
||||||
results.add(translateResultPoints(result, xOffset, yOffset));
|
|
||||||
ResultPoint[] resultPoints = result.getResultPoints();
|
ResultPoint[] resultPoints = result.getResultPoints();
|
||||||
if (resultPoints == null || resultPoints.length == 0) {
|
if (resultPoints == null || resultPoints.length == 0) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue