mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
Remove commented-out function
This commit is contained in:
parent
405555b401
commit
4f9edf13d7
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user