mirror of
https://github.com/zxing/zxing.git
synced 2025-01-17 22:20:48 -08:00
Turn down depth of recursion
git-svn-id: https://zxing.googlecode.com/svn/trunk@1256 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
7fb0fea91f
commit
48a74e2b14
|
@ -42,7 +42,7 @@ import java.util.Vector;
|
||||||
*/
|
*/
|
||||||
public final class GenericMultipleBarcodeReader implements MultipleBarcodeReader {
|
public final class GenericMultipleBarcodeReader implements MultipleBarcodeReader {
|
||||||
|
|
||||||
private static final int MIN_DIMENSION_TO_RECUR = 30;
|
private static final int MIN_DIMENSION_TO_RECUR = 100;
|
||||||
|
|
||||||
private final Reader delegate;
|
private final Reader delegate;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue