From 16cca6723a0278091416952efc19b8d0d020418c Mon Sep 17 00:00:00 2001 From: Henry Schimke Date: Thu, 29 Dec 2022 12:40:29 -0600 Subject: [PATCH] cargo fmt --- src/pdf417/decoder/detection_result.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pdf417/decoder/detection_result.rs b/src/pdf417/decoder/detection_result.rs index bfb1f09..82481ab 100644 --- a/src/pdf417/decoder/detection_result.rs +++ b/src/pdf417/decoder/detection_result.rs @@ -508,7 +508,8 @@ impl DetectionRXingResult { let previousColumnCodewords = self.detectionRXingResultColumns[barcodeColumn - 1] .as_ref() .unwrap() - .getCodewords().to_vec(); + .getCodewords() + .to_vec(); let mut nextColumnCodewords = previousColumnCodewords.clone(); @@ -516,7 +517,8 @@ impl DetectionRXingResult { nextColumnCodewords = self.detectionRXingResultColumns[barcodeColumn + 1] .as_ref() .unwrap() - .getCodewords().to_vec(); //col.getCodewords(); + .getCodewords() + .to_vec(); //col.getCodewords(); } // if (self.detectionRXingResultColumns[barcodeColumn + 1] != null) { // nextColumnCodewords = self.detectionRXingResultColumns[barcodeColumn + 1].getCodewords();