mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-26 12:22:34 +00:00
many warnings cleaned up
This commit is contained in:
@@ -19,7 +19,7 @@ use std::{fmt::Display, rc::Rc};
|
||||
use crate::pdf417::pdf_417_common;
|
||||
|
||||
use super::{
|
||||
BarcodeMetadata, BoundingBox, Codeword, DetectionRXingResultColumn,
|
||||
BarcodeMetadata, BoundingBox, Codeword,
|
||||
DetectionRXingResultColumnTrait, DetectionRXingResultRowIndicatorColumn,
|
||||
};
|
||||
|
||||
@@ -41,7 +41,7 @@ impl DetectionRXingResult {
|
||||
boundingBox: Rc<BoundingBox>,
|
||||
) -> DetectionRXingResult {
|
||||
let mut columns = Vec::new();
|
||||
for i in 0..(barcodeMetadata.getColumnCount() as usize + 2) {
|
||||
for _i in 0..(barcodeMetadata.getColumnCount() as usize + 2) {
|
||||
columns.push(None);
|
||||
}
|
||||
DetectionRXingResult {
|
||||
|
||||
Reference in New Issue
Block a user