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/util/io/TeeInputStream.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/util/io/TeeInputStream.cs')
-rw-r--r-- | crypto/src/util/io/TeeInputStream.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/src/util/io/TeeInputStream.cs b/crypto/src/util/io/TeeInputStream.cs index 373df4502..b344be8a8 100644 --- a/crypto/src/util/io/TeeInputStream.cs +++ b/crypto/src/util/io/TeeInputStream.cs @@ -20,11 +20,11 @@ namespace Org.BouncyCastle.Utilities.IO public override void Close() { - input.Close(); - tee.Close(); + Platform.Dispose(input); + Platform.Dispose(tee); } - public override int Read(byte[] buf, int off, int len) + public override int Read(byte[] buf, int off, int len) { int i = input.Read(buf, off, len); |