remove messages from compile_hashmap

This commit is contained in:
Simon Gardling 2022-04-13 10:17:19 -04:00
parent f2181dc695
commit b1e1d7b536

View File

@ -12,9 +12,6 @@ fn compare_len_reverse_alpha(a: &String, b: &String) -> Ordering {
/// Generates hashmap (well really a vector of tuple of strings that are then turned into a hashmap by phf) /// Generates hashmap (well really a vector of tuple of strings that are then turned into a hashmap by phf)
#[allow(dead_code)] #[allow(dead_code)]
pub fn compile_hashmap(data: Vec<String>) -> Vec<(String, String)> { pub fn compile_hashmap(data: Vec<String>) -> Vec<(String, String)> {
let start = std::time::Instant::now();
println!("compile_hashmap");
let mut seen = HashSet::new(); let mut seen = HashSet::new();
let tuple_list_1: Vec<(String, String)> = data let tuple_list_1: Vec<(String, String)> = data
@ -45,8 +42,6 @@ pub fn compile_hashmap(data: Vec<String>) -> Vec<(String, String)> {
output.push((key.clone(), format!("Hint::Many(&{:?})", multi_data))); output.push((key.clone(), format!("Hint::Many(&{:?})", multi_data)));
} }
} }
println!("Done! {:?}", start.elapsed());
output output
} }