summary refs log tree commit diff
path: root/crypto/src/util/io/BaseInputStream.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-05-18 00:10:19 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-05-18 00:10:19 +0700
commita7d8b6406c3cb61a2aaa6f1e5bffd357561a7a41 (patch)
tree1f51b52d19800a3b0d8cbbf5e8e8e655dde88d99 /crypto/src/util/io/BaseInputStream.cs
parentMicrosoft.NET.Test.Sdk 17.6.0 (diff)
downloadBouncyCastle.NET-ed25519-a7d8b6406c3cb61a2aaa6f1e5bffd357561a7a41.tar.xz
Refactoring in Stream classes
Diffstat (limited to 'crypto/src/util/io/BaseInputStream.cs')
-rw-r--r--crypto/src/util/io/BaseInputStream.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/src/util/io/BaseInputStream.cs b/crypto/src/util/io/BaseInputStream.cs

index 438583c75..4551f2ef7 100644 --- a/crypto/src/util/io/BaseInputStream.cs +++ b/crypto/src/util/io/BaseInputStream.cs
@@ -1,7 +1,7 @@ using System; using System.IO; -using System.Threading; #if NETCOREAPP1_0_OR_GREATER || NET45_OR_GREATER || NETSTANDARD1_0_OR_GREATER +using System.Threading; using System.Threading.Tasks; #endif @@ -102,5 +102,7 @@ namespace Org.BouncyCastle.Utilities.IO throw new NotSupportedException(); } #endif + + // TODO[api] WriteByte } }