diff options
author | Oluwatobi Sofela <60105594+oluwatobiss@users.noreply.github.com> | 2024-03-22 14:48:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-22 13:48:03 +0000 |
commit | bae77671f85481503ab563c20ed488cf883436fa (patch) | |
tree | cd718b8b5e9949052ebde65f9f5f2ce7fc60ef07 /components/script/dom/htmlareaelement.rs | |
parent | 3e9b8089381492edeb0992c93776d39bf1df2607 (diff) | |
download | servo-bae77671f85481503ab563c20ed488cf883436fa.tar.gz servo-bae77671f85481503ab563c20ed488cf883436fa.zip |
clippy: Fix `unnecessary_cast` warnings in `components/script` (#31823)
* clippy: Fix unnecessary cast warnings
* clippy: Replace redundant field names with their shorthand alternatives
* clippy: Delete struct pattern dereferencings
Diffstat (limited to 'components/script/dom/htmlareaelement.rs')
-rw-r--r-- | components/script/dom/htmlareaelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlareaelement.rs b/components/script/dom/htmlareaelement.rs index e499d6960cd..59a55b22f04 100644 --- a/components/script/dom/htmlareaelement.rs +++ b/components/script/dom/htmlareaelement.rs @@ -222,8 +222,8 @@ impl Area { .iter() .enumerate() .map(|(index, point)| match index % 2 { - 0 => point + p.x as f32, - _ => point + p.y as f32, + 0 => point + p.x, + _ => point + p.y, }); Area::Polygon { points: iter.collect::<Vec<_>>(), |