chore: silence unused warnings (#14328)

This commit is contained in:
Matthias Seitz
2025-02-08 10:24:31 +01:00
committed by GitHub
parent 5c231898ad
commit 1a4f5441f3

View File

@ -5,10 +5,7 @@ use crate::{
};
use std::{
ptr,
sync::{
mpsc::{sync_channel, Receiver, SyncSender},
Arc,
},
sync::mpsc::{sync_channel, Receiver, SyncSender},
};
#[derive(Copy, Clone, Debug)]
@ -31,7 +28,7 @@ pub(crate) enum TxnManagerMessage {
pub(crate) struct TxnManager {
sender: SyncSender<TxnManagerMessage>,
#[cfg(feature = "read-tx-timeouts")]
read_transactions: Option<Arc<read_transactions::ReadTransactions>>,
read_transactions: Option<std::sync::Arc<read_transactions::ReadTransactions>>,
}
impl TxnManager {