refactor: Rewrite another method chain to be more readable

This commit is contained in:
Gregory Conrad 2022-11-26 13:33:19 -05:00
parent 2db738dbac
commit e0d24104a3

View File

@ -478,13 +478,8 @@ impl<'a, 't, 'u, 'i> Settings<'a, 't, 'u, 'i> {
fn update_exact_attributes(&mut self) -> Result<bool> {
match self.exact_attributes {
Setting::Set(ref attrs) => {
let old_attrs = self
.index
.exact_attributes(self.wtxn)?
.iter()
.cloned()
.map(String::from)
.collect::<HashSet<String>>();
let old_attrs = self.index.exact_attributes(self.wtxn)?;
let old_attrs = old_attrs.into_iter().map(String::from).collect::<HashSet<_>>();
if attrs != &old_attrs {
let attrs = attrs.iter().map(String::as_str).collect::<Vec<_>>();