aboutsummaryrefslogtreecommitdiffstats
path: root/components/remutex/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/remutex/lib.rs')
-rw-r--r--components/remutex/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/remutex/lib.rs b/components/remutex/lib.rs
index 6f8f11ac498..d47237d0ef6 100644
--- a/components/remutex/lib.rs
+++ b/components/remutex/lib.rs
@@ -18,8 +18,8 @@ extern crate log;
use std::cell::{Cell, UnsafeCell};
use std::num::NonZeroUsize;
use std::ops::Deref;
-use std::sync::{LockResult, Mutex, MutexGuard, PoisonError, TryLockError, TryLockResult};
use std::sync::atomic::{AtomicUsize, Ordering};
+use std::sync::{LockResult, Mutex, MutexGuard, PoisonError, TryLockError, TryLockResult};
/// A type for thread ids.