summaryrefslogtreecommitdiffstats
path: root/openpgp/src/cert/raw.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/cert/raw.rs')
-rw-r--r--openpgp/src/cert/raw.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/openpgp/src/cert/raw.rs b/openpgp/src/cert/raw.rs
index bd981c24..22f2b5d1 100644
--- a/openpgp/src/cert/raw.rs
+++ b/openpgp/src/cert/raw.rs
@@ -54,9 +54,7 @@
//!
//! if cert.fingerprint() == fpr {
//! // Found it! Try to convert it to a Cert.
-//! if let cert = Cert::try_from(cert) {
-//! return cert;
-//! }
+//! return Cert::try_from(cert);
//! }
//! }
//!