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:
srowen 2010-03-25 17:23:55 +00:00
parent 7fb0fea91f
commit 48a74e2b14

View file

@ -42,7 +42,7 @@ import java.util.Vector;
*/
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;