package org.simantics.fastlz; import java.io.IOException; import java.io.OutputStream; /** * @author Tuukka Lehtonen */ public class NullOutputStream extends OutputStream { public static final NullOutputStream INSTANCE = new NullOutputStream(); @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 { } }