mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 03:47:02 +02:00
clippy: remove needless lifetimes
This commit is contained in:
parent
771a367b97
commit
924d5d4c11
3 changed files with 8 additions and 8 deletions
|
@ -960,9 +960,9 @@ impl IndexScheduler {
|
|||
///
|
||||
/// ## Return
|
||||
/// The list of processed tasks.
|
||||
fn apply_index_operation<'txn, 'i>(
|
||||
fn apply_index_operation<'i>(
|
||||
&self,
|
||||
index_wtxn: &'txn mut RwTxn<'i, '_>,
|
||||
index_wtxn: &mut RwTxn<'i, '_>,
|
||||
index: &'i Index,
|
||||
operation: IndexOperation,
|
||||
) -> Result<Vec<Task>> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue