summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/forest.rs2
-rw-r--r--src/soft.rs1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/forest.rs b/src/forest.rs
index d4f5083..28ccb24 100644
--- a/src/forest.rs
+++ b/src/forest.rs
@@ -5,7 +5,7 @@ use acap::kd::FlatKdTree;
use acap::knn::{NearestNeighbors, Neighborhood};
use acap::vp::FlatVpTree;
-use std::iter::{self, Extend, FromIterator};
+use std::iter;
/// The number of bits dedicated to the flat buffer.
const BUFFER_BITS: usize = 6;
diff --git a/src/soft.rs b/src/soft.rs
index 694d0e7..4ce4204 100644
--- a/src/soft.rs
+++ b/src/soft.rs
@@ -8,7 +8,6 @@ use acap::knn::{NearestNeighbors, Neighborhood};
use acap::vp::FlatVpTree;
use std::iter;
-use std::iter::FromIterator;
use std::mem;
/// A trait for objects that can be soft-deleted.