blob: 03c058a56d3ccdefa34d0c2a77f3a91b93f7b00a [file] [log] [blame]
/**
*
*/
package org.bouncycastle.cms;
import java.io.IOException;
import java.io.OutputStream;
class NullOutputStream
extends OutputStream
{
public void write(byte[] buf)
throws IOException
{
// do nothing
}
public void write(byte[] buf, int off, int len)
throws IOException
{
// do nothing
}
public void write(int b) throws IOException
{
// do nothing
}
}