Skip to content

Commit

Permalink
chore: cargo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jpedroh committed Jul 27, 2024
1 parent b744475 commit 5af29a0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions matching/src/matchings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ impl<'a> Matchings<'a> {
individual_matchings: {
matching_entries
.keys()
.into_iter()
.flat_map(|key| [(key.0, key.1), (key.1, key.0)])
.collect::<HashMap<&'a CSTNode<'a>, &'a CSTNode<'a>>>()
},
Expand Down Expand Up @@ -65,7 +64,6 @@ impl<'a> Matchings<'a> {
matchings
.matching_entries
.keys()
.into_iter()
.flat_map(|key| [(key.0, key.1), (key.1, key.0)])
.collect::<HashMap<&'a CSTNode<'a>, &'a CSTNode<'a>>>(),
);
Expand Down

0 comments on commit 5af29a0

Please sign in to comment.