diff options
author | UK992 <urbankrajnc92@gmail.com> | 2016-09-08 17:47:32 +0200 |
---|---|---|
committer | UK992 <urbankrajnc92@gmail.com> | 2016-09-09 04:55:19 +0200 |
commit | 93a103ba7306b578841b73a0ecfbccaad8fc78c1 (patch) | |
tree | a8855004b4309212182505b0cf72f116d846c4cb /components/util/remutex.rs | |
parent | 875981ece592b03bcf06f16b6613ddabfa11133f (diff) | |
download | servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.tar.gz servo-93a103ba7306b578841b73a0ecfbccaad8fc78c1.zip |
Reorder `use` statements
Diffstat (limited to 'components/util/remutex.rs')
-rw-r--r-- | components/util/remutex.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/remutex.rs b/components/util/remutex.rs index ec1c27a3d1a..02dcd884bcd 100644 --- a/components/util/remutex.rs +++ b/components/util/remutex.rs @@ -14,8 +14,8 @@ use core::nonzero::NonZero; use std::cell::{Cell, UnsafeCell}; use std::mem; use std::ops::Deref; -use std::sync::atomic::{AtomicUsize, Ordering}; use std::sync::{LockResult, Mutex, MutexGuard, PoisonError, TryLockError, TryLockResult}; +use std::sync::atomic::{AtomicUsize, Ordering}; /// A type for thread ids. |