Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pkix/src/main/java/org/bouncycastle/cms/NullOutputStream.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/cms/NullOutputStream.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/cms/NullOutputStream.java b/pkix/src/main/java/org/bouncycastle/cms/NullOutputStream.java
deleted file mode 100644
index 03c058a5..00000000
--- a/pkix/src/main/java/org/bouncycastle/cms/NullOutputStream.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- *
- */
-package org.bouncycastle.cms;
-
-import java.io.IOException;
-import java.io.OutputStream;
-
-class NullOutputStream
- extends OutputStream
-{
- public void write(byte[] buf)
- throws IOException
- {
- // do nothing
- }
-
- public void write(byte[] buf, int off, int len)
- throws IOException
- {
- // do nothing
- }
-
- public void write(int b) throws IOException
- {
- // do nothing
- }
-} \ No newline at end of file