diff options
author | bors-servo <infra@servo.org> | 2023-05-20 07:45:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-20 07:45:01 +0200 |
commit | 4998c65c423f995149f4b314d8ff68024c24cc72 (patch) | |
tree | 06a3089a4a4ba27eb07734c2e01df6c08c06523f /components | |
parent | 2426a38a4d11615d71c34649b83436aa1f109260 (diff) | |
parent | da9796f7e338b6d26de1bf9b90cd8c949779aa2c (diff) | |
download | servo-4998c65c423f995149f4b314d8ff68024c24cc72.tar.gz servo-4998c65c423f995149f4b314d8ff68024c24cc72.zip |
Auto merge of #29761 - fabricedesre:no-wedriver-warning, r=mrobinson
Fix compiler warning introduced in 4aa8a1c41895550e43dcbce6442c9f4b6163b9b7
<!-- 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. -->
Diffstat (limited to 'components')
-rw-r--r-- | components/webdriver_server/actions.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/webdriver_server/actions.rs b/components/webdriver_server/actions.rs index af08ac1acc8..afe7b29eb94 100644 --- a/components/webdriver_server/actions.rs +++ b/components/webdriver_server/actions.rs @@ -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(()) |