mirror of
https://github.com/nushell/nushell.git
synced 2025-04-04 22:48:41 +02:00
Remove unnecessary sort in explore
search fn (#13690)
Noticed when playing with the `stable_sort_primitive` lint that the elements from `enumerate` are already sorted.
This commit is contained in:
parent
3f332bef35
commit
e3efc8da9f
@ -860,10 +860,8 @@ fn search_pattern(data: impl Iterator<Item = String>, pat: &str, rev: bool) -> V
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !rev {
|
if rev {
|
||||||
matches.sort();
|
matches.reverse();
|
||||||
} else {
|
|
||||||
matches.sort_by(|a, b| b.cmp(a));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
matches
|
matches
|
||||||
|
Loading…
Reference in New Issue
Block a user