aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/NullOutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/NullOutputStream.java')
-rw-r--r--libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/NullOutputStream.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/NullOutputStream.java b/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/NullOutputStream.java
deleted file mode 100644
index c5ccd4ec5..000000000
--- a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/NullOutputStream.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- *
- */
-package org.spongycastle.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