chore: remove unused derelativize_span_coordinates

This commit is contained in:
Nat 2024-12-13 11:04:43 -08:00
parent 621166e8c6
commit cf1330bb21
1 changed files with 0 additions and 4 deletions

View File

@ -107,10 +107,6 @@ pub struct Tree {
pub buffer: BTreeMap<(u16, u16), u16>,
}
fn derelativize_span_coordinates(x: i16, y: i16) -> (usize, usize) {
return ((x + 4) as usize, (y + 4) as usize);
}
impl Tree {
fn assert_capacity_constraint(&self) {
if self.root.len() + self.trunk.len() > self.stack_size {