19 lines
360 B
Java
19 lines
360 B
Java
package ctbrec.io;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
|
|
public class DevNull extends OutputStream {
|
|
@Override
|
|
public void write(int b) throws IOException {
|
|
}
|
|
|
|
@Override
|
|
public void write(byte[] b) throws IOException {
|
|
}
|
|
|
|
@Override
|
|
public void write(byte[] b, int off, int len) throws IOException {
|
|
}
|
|
}
|