
import java.io.OutputStream;
import java.io.IOException;

/**
 * Created by Xan Gregg.
 * Date: Nov 13, 2004
 */
public class NullOutputStream extends OutputStream {
    public void write(int i) throws IOException {
        // do nothing
    }
}
