summaryrefslogtreecommitdiff
path: root/src/rwlock/write_lock.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2024-05-23 19:55:41 -0400
committerBotahamec <botahamec@outlook.com>2024-05-23 19:55:41 -0400
commit8ecf29cfe2a74d02b2c4bcb7f7ad1a811dc38dfe (patch)
tree663b211b0da02431b2d100a270d60d48eebbefb0 /src/rwlock/write_lock.rs
parent046c93cbea3236b7adf9e473d299345ee985cbb2 (diff)
Unused imports
Diffstat (limited to 'src/rwlock/write_lock.rs')
-rw-r--r--src/rwlock/write_lock.rs2
1 files changed, 1 insertions, 1 deletions
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 {