Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
update
  • Loading branch information
cping committed Jul 24, 2015
1 parent aee4b47 commit 51c1f2b
Show file tree
Hide file tree
Showing 40 changed files with 1,071 additions and 3,335 deletions.
Binary file modified demo/demo.jar
Binary file not shown.
3 changes: 0 additions & 3 deletions eclipse/src/com/google/zxing/BarcodeFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@
*/
public enum BarcodeFormat {

/** Aztec 2D barcode format. */
AZTEC,

/** CODABAR 1D format. */
CODABAR,

Expand Down
5 changes: 0 additions & 5 deletions eclipse/src/com/google/zxing/MultiFormatReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package com.google.zxing;

import com.google.zxing.aztec.AztecReader;
import com.google.zxing.datamatrix.DataMatrixReader;
import com.google.zxing.maxicode.MaxiCodeReader;
import com.google.zxing.oned.MultiFormatOneDReader;
Expand Down Expand Up @@ -136,9 +135,6 @@ public void setHints(Map<DecodeHintType, ?> hints) {
if (formats.contains(BarcodeFormat.DATA_MATRIX)) {
readers.add(new DataMatrixReader());
}
if (formats.contains(BarcodeFormat.AZTEC)) {
readers.add(new AztecReader());
}
if (formats.contains(BarcodeFormat.MAXICODE)) {
readers.add(new MaxiCodeReader());
}
Expand All @@ -154,7 +150,6 @@ public void setHints(Map<DecodeHintType, ?> hints) {

readers.add(new QRCodeReader());
readers.add(new DataMatrixReader());
readers.add(new AztecReader());
readers.add(new MaxiCodeReader());

if (tryHarder) {
Expand Down
4 changes: 0 additions & 4 deletions eclipse/src/com/google/zxing/MultiFormatWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

package com.google.zxing;

import com.google.zxing.aztec.AztecWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.datamatrix.DataMatrixWriter;
import com.google.zxing.oned.CodaBarWriter;
Expand Down Expand Up @@ -77,9 +76,6 @@ public BitMatrix encode(String contents, BarcodeFormat format, int width,
case DATA_MATRIX:
writer = new DataMatrixWriter();
break;
case AZTEC:
writer = new AztecWriter();
break;
default:
throw new IllegalArgumentException(
"No encoder available for format " + format);
Expand Down
49 changes: 0 additions & 49 deletions eclipse/src/com/google/zxing/aztec/AztecDetectorResult.java

This file was deleted.

123 changes: 0 additions & 123 deletions eclipse/src/com/google/zxing/aztec/AztecReader.java

This file was deleted.

99 changes: 0 additions & 99 deletions eclipse/src/com/google/zxing/aztec/AztecWriter.java

This file was deleted.

Loading

0 comments on commit 51c1f2b

Please sign in to comment.