cargo fmt

This commit is contained in:
Henry Schimke
2022-10-17 10:51:08 -05:00
parent 111fe47566
commit ae11af8c5b
136 changed files with 2117 additions and 1776 deletions

View File

@@ -1,4 +1,3 @@
/*
* Copyright 2008 ZXing authors
*
@@ -17,7 +16,7 @@
//package com.google.zxing;
use crate::{BarcodeFormat, common::BitMatrix, Exceptions, EncodingHintDictionary};
use crate::{common::BitMatrix, BarcodeFormat, EncodingHintDictionary, Exceptions};
/**
* The base class for all objects which encode/generate a barcode image.
@@ -60,4 +59,4 @@ pub trait Writer {
height: i32,
hints: &EncodingHintDictionary,
) -> Result<BitMatrix, Exceptions>;
}
}