The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package org.maltparser.core.helper;

import java.io.OutputStream;
/**
*
*
* @author Johan Hall
*/
public final class NoOutputStream extends OutputStream {
	public static final OutputStream DEVNULL = new NoOutputStream();

    private NoOutputStream() {}
    public void write(int b) {}
    public void write(byte[] b) {}
    public void write(byte[] b, int off, int len) {}
}