summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicha White <botahamec@outlook.com>2024-05-31 11:03:28 -0400
committerMicha White <botahamec@outlook.com>2024-05-31 11:03:28 -0400
commit4b0a7f73231ce4e5548a400fc51ad9ca63e54331 (patch)
treeb0f7faef893d16ad7b859ded17e055f590f3b1f7
parent0e0b0164eb4009c513cb02b0dc287b1658fcecc3 (diff)
Remove unused import
-rw-r--r--src/collection/boxed.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/collection/boxed.rs b/src/collection/boxed.rs
index 8e3076e..375564c 100644
--- a/src/collection/boxed.rs
+++ b/src/collection/boxed.rs
@@ -2,7 +2,6 @@ use std::alloc::Layout;
use std::cell::UnsafeCell;
use std::fmt::Debug;
use std::marker::PhantomData;
-use std::ptr::NonNull;
use crate::lockable::{Lockable, OwnedLockable, RawLock, Sharable};
use crate::Keyable;