cargo fmt

This commit is contained in:
Henry Schimke
2023-02-04 13:13:37 -06:00
parent 92f15be032
commit 9d01d43e1a
4 changed files with 10 additions and 6 deletions

View File

@@ -96,8 +96,10 @@ impl<'a> Detector<'_> {
// resultPointCallback = hints == null ? null :
// (RXingResultPointCallback) hints.get(DecodeHintType.NEED_RESULT_POINT_CALLBACK);
let mut finder =
FinderPatternFinder::with_callback(self.image.clone(), self.resultPointCallback.clone());
let mut finder = FinderPatternFinder::with_callback(
self.image.clone(),
self.resultPointCallback.clone(),
);
let info = finder.find(hints)?;
self.processFinderPatternInfo(info)