partial move to use::crate

This commit is contained in:
Henry Schimke
2022-08-14 18:50:29 -05:00
parent 5d5280abfd
commit a4a943ee15
19 changed files with 58 additions and 251 deletions

View File

@@ -1,13 +1,8 @@
import com.google.zxing.NotFoundException;
import com.google.zxing.ResultPoint;
import com.google.zxing.aztec.AztecDetectorResult;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.GridSampler;
import com.google.zxing.common.detector.MathUtils;
import com.google.zxing.common.detector.WhiteRectangleDetector;
import com.google.zxing.common.reedsolomon.GenericGF;
import com.google.zxing.common.reedsolomon.ReedSolomonDecoder;
import com.google.zxing.common.reedsolomon.ReedSolomonException;
use crate::{NotFoundException,ResultPoint};
use crate::aztec::AztecDetectorResult;
use crate::common::{BitMatrix,GridSampler};
use crate::common::detector::{MathUtils,WhiteRectangleDetector};
use crate::common::reedsolomon::{GenericGF,ReedSolomonDecoder,ReedSolomonException};
/**