summaryrefslogtreecommitdiffstats
path: root/src/frontier.rs
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-11-07 14:43:38 -0500
committerTavian Barnes <tavianator@tavianator.com>2023-11-21 16:46:50 -0500
commit932ff518e5f70c58e8dc687c00dab2bbdd4bec8d (patch)
tree5c0c6931b161d889ec79f32215cc5ff1a9166402 /src/frontier.rs
parent9921304be59b13bfa6dca0c8938a3952003556e4 (diff)
downloadkd-forest-932ff518e5f70c58e8dc687c00dab2bbdd4bec8d.tar.xz
frontier: Remove unused is_empty() method
Diffstat (limited to 'src/frontier.rs')
-rw-r--r--src/frontier.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/frontier.rs b/src/frontier.rs
index ccc3efa..40b1d35 100644
--- a/src/frontier.rs
+++ b/src/frontier.rs
@@ -25,9 +25,6 @@ pub trait Frontier {
/// The number of pixels currently on the frontier.
fn len(&self) -> usize;
- /// Whether the frontier is empty.
- fn is_empty(&self) -> bool;
-
/// Place the given color on the frontier, and return its position.
fn place(&mut self, rgb8: Rgb8) -> Option<(u32, u32)>;
}