Skip to content

Commit 8982476

Browse files
committed
Fixed weird import order
1 parent 991effa commit 8982476

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crossbeam-utils/src/sync/parker.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1+
use std::fmt;
12
use std::marker::PhantomData;
23
use std::sync::atomic::AtomicUsize;
34
use std::sync::atomic::Ordering::SeqCst;
45
use std::sync::{Arc, Condvar, Mutex};
5-
use std::time::Duration;
6-
use std::{fmt, time::Instant};
6+
use std::time::{Duration, Instant};
77

88
/// A thread parking primitive.
99
///

0 commit comments

Comments
 (0)