diff --git a/crates/text_edit/src/lib.rs b/crates/text_edit/src/lib.rs index c4000d8052..95b575db17 100644 --- a/crates/text_edit/src/lib.rs +++ b/crates/text_edit/src/lib.rs @@ -116,7 +116,6 @@ impl TextEdit { } pub fn union(&mut self, other: TextEdit) -> Result<(), TextEdit> { - dbg!(&self, &other); // FIXME: can be done without allocating intermediate vector let mut all = self.iter().chain(other.iter()).collect::>(); if !check_disjoint_or_equal(&mut all) {