diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-04 16:11:28 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2015-11-04 16:11:28 +0700 |
commit | ed2134bdcf763b2b6a11742911b4c5efd1de4550 (patch) | |
tree | b23f6dfb1ee88ddc393276229c014204b42aea22 /crypto/src/cms/CMSContentInfoParser.cs | |
parent | Perform counter increment without branches (diff) | |
download | BouncyCastle.NET-ed25519-ed2134bdcf763b2b6a11742911b4c5efd1de4550.tar.xz |
Change Close calls to Dispose calls for PORTABLE
Diffstat (limited to 'crypto/src/cms/CMSContentInfoParser.cs')
-rw-r--r-- | crypto/src/cms/CMSContentInfoParser.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/src/cms/CMSContentInfoParser.cs b/crypto/src/cms/CMSContentInfoParser.cs index fde06cf4c..a7b43f295 100644 --- a/crypto/src/cms/CMSContentInfoParser.cs +++ b/crypto/src/cms/CMSContentInfoParser.cs @@ -3,6 +3,7 @@ using System.IO; using Org.BouncyCastle.Asn1; using Org.BouncyCastle.Asn1.Cms; +using Org.BouncyCastle.Utilities; namespace Org.BouncyCastle.Cms { @@ -41,7 +42,7 @@ namespace Org.BouncyCastle.Cms */ public void Close() { - this.data.Close(); + Platform.Dispose(this.data); } } } |