Implement clippy suggestions

This commit is contained in:
Henry Schimke
2023-01-04 14:48:16 -06:00
parent c65eadf102
commit 48287631dd
196 changed files with 2465 additions and 2574 deletions

View File

@@ -34,11 +34,11 @@ impl RXingResultPoint {
impl ResultPoint for RXingResultPoint {
fn getX(&self) -> f32 {
return self.x;
self.x
}
fn getY(&self) -> f32 {
return self.y;
self.y
}
fn into_rxing_result_point(self) -> RXingResultPoint {