Use `sort_unstable` rather than `sort` when creating listings

This commit is contained in:
Nathan Fisher 2024-01-01 23:32:40 -05:00
parent 1036e90238
commit 98fcfd7f5e
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ impl<R: Read + Send + Seek> ListingStream<R> {
let listing = listing?;
list.push(listing);
}
list.sort();
list.sort_unstable();
Ok(list)
}
}