aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/util/io/TeeOutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/java/org/spongycastle/util/io/TeeOutputStream.java')
-rw-r--r--libraries/spongycastle/core/src/main/java/org/spongycastle/util/io/TeeOutputStream.java52
1 files changed, 0 insertions, 52 deletions
diff --git a/libraries/spongycastle/core/src/main/java/org/spongycastle/util/io/TeeOutputStream.java b/libraries/spongycastle/core/src/main/java/org/spongycastle/util/io/TeeOutputStream.java
deleted file mode 100644
index 9e2317c6d..000000000
--- a/libraries/spongycastle/core/src/main/java/org/spongycastle/util/io/TeeOutputStream.java
+++ /dev/null
@@ -1,52 +0,0 @@
-package org.spongycastle.util.io;
-
-import java.io.IOException;
-import java.io.OutputStream;
-
-public class TeeOutputStream
- extends OutputStream
-{
- private OutputStream output1;
- private OutputStream output2;
-
- public TeeOutputStream(OutputStream output1, OutputStream output2)
- {
- this.output1 = output1;
- this.output2 = output2;
- }
-
- public void write(byte[] buf)
- throws IOException
- {
- this.output1.write(buf);
- this.output2.write(buf);
- }
-
- public void write(byte[] buf, int off, int len)
- throws IOException
- {
- this.output1.write(buf, off, len);
- this.output2.write(buf, off, len);
- }
-
- public void write(int b)
- throws IOException
- {
- this.output1.write(b);
- this.output2.write(b);
- }
-
- public void flush()
- throws IOException
- {
- this.output1.flush();
- this.output2.flush();
- }
-
- public void close()
- throws IOException
- {
- this.output1.close();
- this.output2.close();
- }
-} \ No newline at end of file