clippy: remove needless lifetimes

This commit is contained in:
Louis Dureuil 2023-01-30 17:18:02 +01:00
parent 89675e5f15
commit 3296cf7ae6
No known key found for this signature in database
7 changed files with 38 additions and 38 deletions

View file

@ -947,9 +947,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>> {