forgot a dbg

This commit is contained in:
Anatol Ulrich 2021-11-03 14:21:29 +01:00
parent 9bce4d6696
commit 7581ba3f30

View File

@ -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::<Vec<_>>();
if !check_disjoint_or_equal(&mut all) {