From d4e7a531bf25f71f731e77911bf1eff94e26ce77 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sat, 21 Oct 2023 23:20:51 +0700 Subject: [PATCH] Remove unnecessary single component path imports. --- src/fair_mutex.rs | 1 - src/mutex.rs | 1 - src/rwlock.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/src/fair_mutex.rs b/src/fair_mutex.rs index d7d7a77c..2807af20 100644 --- a/src/fair_mutex.rs +++ b/src/fair_mutex.rs @@ -6,7 +6,6 @@ // copied, modified, or distributed except according to those terms. use crate::raw_fair_mutex::RawFairMutex; -use lock_api; /// A mutual exclusive primitive that is always fair, useful for protecting shared data /// diff --git a/src/mutex.rs b/src/mutex.rs index f3f8aa92..35f97a91 100644 --- a/src/mutex.rs +++ b/src/mutex.rs @@ -6,7 +6,6 @@ // copied, modified, or distributed except according to those terms. use crate::raw_mutex::RawMutex; -use lock_api; /// A mutual exclusion primitive useful for protecting shared data /// diff --git a/src/rwlock.rs b/src/rwlock.rs index 4167a858..23109d1d 100644 --- a/src/rwlock.rs +++ b/src/rwlock.rs @@ -6,7 +6,6 @@ // copied, modified, or distributed except according to those terms. use crate::raw_rwlock::RawRwLock; -use lock_api; /// A reader-writer lock ///