summaryrefslogtreecommitdiffstats
path: root/autocrypt
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2020-03-25 12:19:35 +0100
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2020-03-26 18:33:21 +0100
commit70a96487b25557c3b1ffcba4b61cc1140e76935a (patch)
tree3846c7680a75047b81fe3b8307da47d4a4b0c080 /autocrypt
parent89337646884b59c894329432eea960be4b3e335e (diff)
Remove redundant field names.
Diffstat (limited to 'autocrypt')
-rw-r--r--autocrypt/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/autocrypt/src/lib.rs b/autocrypt/src/lib.rs
index 1aa84cc0..6caa5a21 100644
--- a/autocrypt/src/lib.rs
+++ b/autocrypt/src/lib.rs
@@ -272,7 +272,7 @@ impl AutocryptHeaders {
} else {
key
},
- value: value,
+ value,
});
}
@@ -346,7 +346,7 @@ impl AutocryptSetupMessage {
passcode: None,
passcode_format: None,
passcode_begin: None,
- cert: cert,
+ cert,
}
}
@@ -769,7 +769,7 @@ impl<'a> AutocryptSetupMessageParser<'a> {
passcode: self.passcode,
passcode_format: self.passcode_format,
passcode_begin: self.passcode_begin,
- cert: cert,
+ cert,
})
}
}