summary refs log tree commit diff
path: root/crypto/src/cms/NullOutputStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/cms/NullOutputStream.cs')
-rw-r--r--crypto/src/cms/NullOutputStream.cs20
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 - } - } -}