From c4b9868dd436cb97777c8cb1b66e8715bc6f2700 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Mon, 14 Nov 2022 01:46:02 +0700 Subject: Remove unnecessary classes --- crypto/src/util/io/MemoryInputStream.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 crypto/src/util/io/MemoryInputStream.cs (limited to 'crypto/src/util/io/MemoryInputStream.cs') diff --git a/crypto/src/util/io/MemoryInputStream.cs b/crypto/src/util/io/MemoryInputStream.cs deleted file mode 100644 index cdc5aafb3..000000000 --- a/crypto/src/util/io/MemoryInputStream.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System; -using System.IO; - -namespace Org.BouncyCastle.Utilities.IO -{ - public class MemoryInputStream - : MemoryStream - { - public MemoryInputStream(byte[] buffer) - : base(buffer, false) - { - } - - public sealed override bool CanWrite - { - get { return false; } - } - } -} -- cgit 1.5.1