fix: clippy warning

This commit is contained in:
microproofs 2023-11-22 19:17:45 -05:00
parent 78b0789cbc
commit 63f96d13ca
1 changed files with 1 additions and 1 deletions

View File

@ -150,9 +150,9 @@ impl FieldMap {
self.fields self.fields
.keys() .keys()
.cloned()
.filter(|f| !given.contains(f)) .filter(|f| !given.contains(f))
.sorted() .sorted()
.cloned()
.collect() .collect()
} }
} }