Resolve code modification suggestions

This commit is contained in:
Kerollmops
2021-05-31 15:22:50 +02:00
parent 5012cc3a32
commit 1c0a5cd136
3 changed files with 0 additions and 4 deletions

View File

@ -816,7 +816,6 @@ fn extract_facet_values(value: &Value) -> (Vec<f64>, Vec<String>) {
output_numbers.push(float);
},
Value::String(string) => {
// TODO must be normalized and not only lowercased.
let string = string.trim().to_lowercase();
output_strings.push(string);
},