From 93bf23b79a6ae7bf1a81964a338754d0c16d2ca0 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 28 Sep 2021 09:49:59 +0300 Subject: Return a value without first assigning it to a variable Found by clippy lint let_and_return: https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return --- openpgp/src/cert/amalgamation.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'openpgp') diff --git a/openpgp/src/cert/amalgamation.rs b/openpgp/src/cert/amalgamation.rs index f7c4e51d..9e3c31a1 100644 --- a/openpgp/src/cert/amalgamation.rs +++ b/openpgp/src/cert/amalgamation.rs @@ -1109,9 +1109,8 @@ where C: IntoIterator, let creation_time = time::SystemTime::now() - time::Duration::new(SIG_BACKDATE_BY, 0); - let template = SignatureBuilder::new(SignatureType::AttestationKey) - .set_signature_creation_time(creation_time)?; - template + SignatureBuilder::new(SignatureType::AttestationKey) + .set_signature_creation_time(creation_time)? }; let template = template -- cgit v1.2.3