summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2021-04-09 12:18:55 +0200
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2021-04-09 12:18:55 +0200
commiteb0a1fc2de43c5d9213ea89c4d42c9d0dc2f592d (patch)
tree1e358c6449bfa70cb43752e1db1363f63faabfe8 /openpgp
parent6432f9dd143e10bb1475df059d9f275981010fad (diff)
openpgp, sq: Remove redundant semicolons.
- Compiling with 1.51 toolchains prints warnings about redundant semicolons. Remove them.
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/src/cert.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/cert.rs b/openpgp/src/cert.rs
index ebdf06c2..093c0480 100644
--- a/openpgp/src/cert.rs
+++ b/openpgp/src/cert.rs
@@ -2390,7 +2390,7 @@ impl Cert {
}
}
acc.push(p);
- };
+ }
/// Replaces or pushes a signature.
///
@@ -2411,7 +2411,7 @@ impl Cert {
}
}
acc.push(sig.into());
- };
+ }
for p in packets {
let p = p.into();