aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/j2me/java/io/FilterOutputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/j2me/java/io/FilterOutputStream.java')
-rw-r--r--libraries/spongycastle/core/src/main/j2me/java/io/FilterOutputStream.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/libraries/spongycastle/core/src/main/j2me/java/io/FilterOutputStream.java b/libraries/spongycastle/core/src/main/j2me/java/io/FilterOutputStream.java
deleted file mode 100644
index 52cfb74b1..000000000
--- a/libraries/spongycastle/core/src/main/j2me/java/io/FilterOutputStream.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package java.io;
-
-public class FilterOutputStream extends OutputStream
-{
- protected OutputStream out;
-
- protected FilterOutputStream(OutputStream underlying)
- {
- out = underlying;
- }
-
- public void write(int b) throws IOException
- {
- out.write(b);
- }
-
- public void write(byte[] b) throws IOException
- {
- write(b, 0, b.length);
- }
-
- public void write(byte[] b, int offset, int length) throws IOException
- {
- for (int i = 0; i < length; i++)
- {
- write(b[offset + i]);
- }
- }
-
- public void flush() throws IOException
- {
- out.flush();
- }
-
- public void close() throws IOException
- {
- out.close();
- }
-}