1 files changed, 0 insertions, 20 deletions
diff --git a/crypto/src/cms/NullOutputStream.cs b/crypto/src/cms/NullOutputStream.cs
deleted file mode 100644
index ed937bdeb..000000000
--- a/crypto/src/cms/NullOutputStream.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-
-using Org.BouncyCastle.Utilities.IO;
-
-namespace Org.BouncyCastle.Cms
-{
- internal class NullOutputStream
- : BaseOutputStream
- {
- public override void WriteByte(byte b)
- {
- // do nothing
- }
-
- public override void Write(byte[] buffer, int offset, int count)
- {
- // do nothing
- }
- }
-}
|