Remove unnecessary into call in operation::scoped

This commit is contained in:
Héctor Ramón Jiménez 2022-11-10 00:17:27 +01:00
parent 1480ab2030
commit bec1f5bbe0
No known key found for this signature in database
GPG key ID: 140CC052C94F138E

View file

@ -97,7 +97,7 @@ pub fn scoped<T: 'static>(
}
ScopedOperation {
target: target.into(),
target,
operation: Box::new(operation),
}
}