summary refs log tree commit diff
path: root/crypto/src/util/io/MemoryInputStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/util/io/MemoryInputStream.cs')
-rw-r--r--crypto/src/util/io/MemoryInputStream.cs19
1 files changed, 0 insertions, 19 deletions
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; }
-        }
-    }
-}