summaryrefslogtreecommitdiffstats
path: root/src/frontier.rs
diff options
context:
space:
mode:
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)>;
}