From 4f9edf13d7c6ec98fcda2be95be777ecae36a3f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Lecrenier?= Date: Wed, 10 Aug 2022 13:11:38 +0200 Subject: [PATCH] Remove commented-out function --- .../src/update/word_prefix_pair_proximity_docids.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/milli/src/update/word_prefix_pair_proximity_docids.rs b/milli/src/update/word_prefix_pair_proximity_docids.rs index 367fdc7ab..4e25e0c73 100644 --- a/milli/src/update/word_prefix_pair_proximity_docids.rs +++ b/milli/src/update/word_prefix_pair_proximity_docids.rs @@ -699,18 +699,6 @@ impl PrefixTrieNode { } } } - // fn print(&self, buffer: &mut String, ident: usize) { - // let mut spaces = String::new(); - // for _ in 0..ident { - // spaces.push(' ') - // } - // for (child, c) in &self.children { - // buffer.push(char::from_u32(*c as u32).unwrap()); - // println!("{spaces}{buffer}:"); - // child.print(buffer, ident + 4); - // buffer.pop(); - // } - // } } #[cfg(test)] mod tests {