Skip to content

Commit 0501800

Browse files
clippy fmt lint
1 parent 320eda8 commit 0501800

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
use dashmap::{DashMap, DashSet};
2-
use rustc_hash::FxHasher;
31
use std::hash::BuildHasherDefault;
42

3+
use dashmap::DashMap;
4+
use dashmap::DashSet;
5+
use rustc_hash::FxHasher;
6+
57
pub type FxDashMap<K, V> = DashMap<K, V, BuildHasherDefault<FxHasher>>;
68
pub type FxDashSet<K> = DashSet<K, BuildHasherDefault<FxHasher>>;

0 commit comments

Comments
 (0)