mirror of
https://github.com/servo/servo.git
synced 2025-07-23 23:33:43 +01:00
Fix compiler warning introduced in 4aa8a1c418
This commit is contained in:
parent
2426a38a4d
commit
da9796f7e3
1 changed files with 2 additions and 2 deletions
|
@ -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(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue