diff options
author | Poliorcetics | 2022-09-25 13:12:33 +0000 |
---|---|---|
committer | GitHub | 2022-09-25 13:12:33 +0000 |
commit | e8f0886b21d279fedce53d85f53bb537c1ad808e (patch) | |
tree | 06c2a43961f687f08d5fe87504d0f929d2a29311 | |
parent | 1a4a9b86d74eade2a8df4ae68d97433323f22fac (diff) |
chore: remove unneeded attribute after MSRV bump to 1.61 (#3961)
-rw-r--r-- | helix-term/src/ui/picker.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-term/src/ui/picker.rs b/helix-term/src/ui/picker.rs index d125a6aa..a56455d7 100644 --- a/helix-term/src/ui/picker.rs +++ b/helix-term/src/ui/picker.rs @@ -367,7 +367,6 @@ impl<T: Item> Picker<T> { } else if pattern.starts_with(&self.previous_pattern) { // optimization: if the pattern is a more specific version of the previous one // then we can score the filtered set. - #[allow(unstable_name_collisions)] self.matches.retain_mut(|(index, score)| { let option = &self.options[*index]; let text = option.sort_text(&self.editor_data); |