From 7581ba3f3037325e8d2d591fa4997fff4f15aaf2 Mon Sep 17 00:00:00 2001 From: Anatol Ulrich Date: Wed, 3 Nov 2021 14:21:29 +0100 Subject: [PATCH] forgot a dbg --- crates/text_edit/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/text_edit/src/lib.rs b/crates/text_edit/src/lib.rs index c4000d80522..95b575db17b 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) {