Remove unused RwLock

This commit is contained in:
james7132 2024-02-18 03:00:17 -08:00
parent 4cfd563850
commit 6b69fb9356
No known key found for this signature in database
GPG Key ID: BDB0606BDC85825B
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ use std::marker::PhantomData;
use std::panic::{RefUnwindSafe, UnwindSafe};
use std::rc::Rc;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex, RwLock, TryLockError};
use std::sync::{Arc, Mutex, TryLockError};
use std::task::{Poll, Waker};
use async_lock::OnceCell;