add NullOutputStream
[org.ibex.io.git] / src / org / ibex / io / NullOutputStream.java
1 // Copyright 2007 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.io;
6 import java.io.*;
7
8 public class NullOutputStream extends OutputStream {
9     public void write(int b) { }
10     public void write(byte[] b, int off, int len) { }
11 }