Removed three interfaces which weren't doing any good and were making the 1D class...
[zxing.git] / core / src / com / google / zxing / oned / EAN13Reader.java
index d8f8775..67d82a8 100644 (file)
@@ -16,8 +16,8 @@
 
 package com.google.zxing.oned;
 
-import com.google.zxing.ReaderException;
 import com.google.zxing.BarcodeFormat;
+import com.google.zxing.ReaderException;
 import com.google.zxing.common.BitArray;
 
 /**
@@ -27,7 +27,7 @@ import com.google.zxing.common.BitArray;
  * @author Sean Owen
  * @author alasdair@google.com (Alasdair Mackintosh)
  */
-public final class EAN13Reader extends AbstractUPCEANReader {
+public final class EAN13Reader extends UPCEANReader {
 
   // For an EAN-13 barcode, the first digit is represented by the parities used
   // to encode the next six digits, according to the table below. For example,
@@ -132,4 +132,4 @@ public final class EAN13Reader extends AbstractUPCEANReader {
     throw ReaderException.getInstance();
   }
 
-}
\ No newline at end of file
+}