mirror of
https://github.com/figsoda/mmtc
synced 2024-11-22 15:13:03 +00:00
remove redundant lifetime parameter
This commit is contained in:
parent
7572827aa3
commit
e6ffa2fb54
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ pub enum Command {
|
|||
}
|
||||
|
||||
impl State {
|
||||
pub fn update_search<'a>(&mut self, queue_strings: &'a [String]) {
|
||||
pub fn update_search(&mut self, queue_strings: &[String]) {
|
||||
let query = self.query.to_lowercase();
|
||||
self.filtered.clear();
|
||||
for (i, track) in queue_strings.iter().enumerate() {
|
||||
|
|
Loading…
Reference in a new issue