diff options
| author | Botahamec <botahamec@outlook.com> | 2024-05-23 19:55:41 -0400 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2024-05-23 19:55:41 -0400 |
| commit | 8ecf29cfe2a74d02b2c4bcb7f7ad1a811dc38dfe (patch) | |
| tree | 663b211b0da02431b2d100a270d60d48eebbefb0 /src | |
| parent | 046c93cbea3236b7adf9e473d299345ee985cbb2 (diff) | |
Unused imports
Diffstat (limited to 'src')
| -rw-r--r-- | src/rwlock/rwlock.rs | 2 | ||||
| -rw-r--r-- | src/rwlock/write_lock.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rwlock/rwlock.rs b/src/rwlock/rwlock.rs index 5b6065a..5bff5a3 100644 --- a/src/rwlock/rwlock.rs +++ b/src/rwlock/rwlock.rs @@ -5,7 +5,7 @@ use lock_api::RawRwLock; use crate::key::Keyable; -use super::{RwLock, RwLockReadGuard, RwLockReadRef, RwLockWriteGuard, RwLockWriteRef}; +use super::{RwLock, RwLockReadGuard, RwLockReadRef, RwLockWriteGuard}; impl<T, R: RawRwLock> RwLock<T, R> { /// Creates a new instance of an `RwLock<T>` which is unlocked. diff --git a/src/rwlock/write_lock.rs b/src/rwlock/write_lock.rs index 2cf73cd..15eaacc 100644 --- a/src/rwlock/write_lock.rs +++ b/src/rwlock/write_lock.rs @@ -4,7 +4,7 @@ use lock_api::RawRwLock; use crate::key::Keyable; -use super::{RwLock, RwLockWriteGuard, RwLockWriteRef, WriteLock}; +use super::{RwLock, RwLockWriteGuard, WriteLock}; impl<'l, T: ?Sized + Debug, R: RawRwLock> Debug for WriteLock<'l, T, R> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
