mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Temporarily turning off Data Matrix in MultiFormatReader until it's done
git-svn-id: https://zxing.googlecode.com/svn/trunk@271 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
ea13f8b052
commit
d31305c5f6
|
@ -59,7 +59,8 @@ public final class MultiFormatReader implements Reader {
|
|||
if (readers.isEmpty()) {
|
||||
readers.addElement(new MultiFormatOneDReader());
|
||||
readers.addElement(new QRCodeReader());
|
||||
readers.addElement(new DataMatrixReader());
|
||||
// TODO re-enable once Data Matrix is ready
|
||||
// readers.addElement(new DataMatrixReader());
|
||||
}
|
||||
|
||||
for (int i = 0; i < readers.size(); i++) {
|
||||
|
|
|
@ -28,6 +28,7 @@ import java.io.File;
|
|||
public final class DataMatrixBlackBox1TestCase extends AbstractBlackBoxTestCase {
|
||||
|
||||
public DataMatrixBlackBox1TestCase() {
|
||||
// TODO use MultiFormatReader here once Data Matrix decoder is done
|
||||
super(new File("test/data/blackbox/datamatrix-1"), new DataMatrixReader(), 1.0, BarcodeFormat.DATAMATRIX);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue