01: package elf;
02:
03: import java.io.*;
04:
05: /** An OutputStream that doesn't output anywhere. Stolen from Renu. */
06:
07: public class NullOutputStream extends OutputStream {
08: public NullOutputStream() {
09: super ();
10: }
11:
12: public void write(byte[] b) {
13: }
14:
15: public void write(byte[] b, int off, int len) {
16: }
17:
18: public void write(int b) {
19: }
20: }
|