Auto merge of #29761 - fabricedesre:no-wedriver-warning, r=mrobinson

Fix compiler warning introduced in 4aa8a1c418

<!-- Please describe your changes on the following line: -->

Make the compiler happy.

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [ X] `./mach build -d` does not report any errors
- [X ] `./mach test-tidy` does not report any errors
- [ ] These changes fix #___ (GitHub issue number if applicable)

<!-- Either: -->
- [ ] There are tests for these changes OR
- [ X] These changes do not require tests because this is just fixing a compiler warning

<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->

<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
This commit is contained in:
bors-servo 2023-05-20 07:45:01 +02:00 committed by GitHub
commit 4998c65c42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,7 @@ fn compute_tick_duration(tick_actions: &ActionSequence) -> u64 {
}
},
ActionsType::Key { actions: _ } => (),
ActionsType::Wheel { actions } => todo!("Not implemented."),
ActionsType::Wheel { .. } => todo!("Not implemented."),
}
duration
}
@ -189,7 +189,7 @@ impl Handler {
}
}
},
ActionsType::Wheel { actions } => todo!("Not implemented."),
ActionsType::Wheel { .. } => todo!("Not implemented."),
}
Ok(())