mirror of
https://github.com/servo/servo.git
synced 2025-07-25 08:10:21 +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::Key { actions: _ } => (),
|
||||||
ActionsType::Wheel { actions } => todo!("Not implemented."),
|
ActionsType::Wheel { .. } => todo!("Not implemented."),
|
||||||
}
|
}
|
||||||
duration
|
duration
|
||||||
}
|
}
|
||||||
|
@ -189,7 +189,7 @@ impl Handler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
ActionsType::Wheel { actions } => todo!("Not implemented."),
|
ActionsType::Wheel { .. } => todo!("Not implemented."),
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue