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
}
}
|