mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 10:57:48 +03:00
refactor: do not use unnecessary type hint
This commit is contained in:
parent
26c230cea0
commit
6576e92333
1 changed files with 1 additions and 3 deletions
|
@ -1068,10 +1068,8 @@ mod test {
|
|||
|
||||
#[test]
|
||||
fn switching_views_resets_mouse_clicks() {
|
||||
use slotmap::HopSlotMap;
|
||||
|
||||
let mut mouse_clicks = MouseClicks::new();
|
||||
let mut view_ids: HopSlotMap<ViewId, ()> = HopSlotMap::with_key();
|
||||
let mut view_ids = slotmap::HopSlotMap::with_key();
|
||||
let view1 = view_ids.insert(());
|
||||
let view2 = view_ids.insert(());
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue