diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-04 17:19:48 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-04 17:19:48 +0700 |
commit | 8e84e04d26752d64637c023eb515bc7987c9af0b (patch) | |
tree | d2db6e80a20c58a0275201417fc7f4d70b5d0408 /crypto | |
parent | Change Close calls to Dispose calls for PORTABLE (diff) | |
download | BouncyCastle.NET-ed25519-8e84e04d26752d64637c023eb515bc7987c9af0b.tar.xz |
Remove redundant Flush
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/src/openpgp/PgpCompressedDataGenerator.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/src/openpgp/PgpCompressedDataGenerator.cs b/crypto/src/openpgp/PgpCompressedDataGenerator.cs index c51e6326c..307fdbf08 100644 --- a/crypto/src/openpgp/PgpCompressedDataGenerator.cs +++ b/crypto/src/openpgp/PgpCompressedDataGenerator.cs @@ -157,9 +157,7 @@ namespace Org.BouncyCastle.Bcpg.OpenPgp if (dOut != pkOut) { Platform.Dispose(dOut); - dOut.Flush(); } - dOut = null; pkOut.Finish(); |