diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-16 19:47:31 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-16 19:47:31 +0700 |
commit | d14979f6a8404eea69abfaa5fae8a8f4f783b8f2 (patch) | |
tree | 61abdffbc6a436089597b9350f8401eebd63161f /crypto/src/openpgp/PgpPublicKeyRing.cs | |
parent | More rename/delete (diff) | |
download | BouncyCastle.NET-ed25519-d14979f6a8404eea69abfaa5fae8a8f4f783b8f2.tar.xz |
Remove redundant semicolons
Diffstat (limited to '')
-rw-r--r-- | crypto/src/openpgp/PgpPublicKeyRing.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/openpgp/PgpPublicKeyRing.cs b/crypto/src/openpgp/PgpPublicKeyRing.cs index 7b1ac93bf..92464d64f 100644 --- a/crypto/src/openpgp/PgpPublicKeyRing.cs +++ b/crypto/src/openpgp/PgpPublicKeyRing.cs @@ -45,7 +45,7 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp + "tag 0x" + ((int)initialTag).ToString("X")); } - PublicKeyPacket pubPk = (PublicKeyPacket) bcpgInput.ReadPacket();; + PublicKeyPacket pubPk = (PublicKeyPacket) bcpgInput.ReadPacket(); TrustPacket trustPk = ReadOptionalTrustPacket(bcpgInput); // direct signatures and revocations |