Removed unnecessary debug statements

This commit is contained in:
Keith Simmons 2022-04-28 09:20:56 -07:00
parent e05793b52a
commit 4c860dc82f

View file

@ -1179,7 +1179,6 @@ impl Buffer {
let start = (delta + range.start as isize) as usize + first_newline_ix + 1;
let end = (delta + range.start as isize) as usize + new_text_len;
delta += new_text_len as isize - (range.end as isize - range.start as isize);
dbg!(&range, new_text, start, end, delta);
Some(self.anchor_before(start)..self.anchor_after(end))
})
.collect::<Vec<Range<Anchor>>>();