blob: f434fd7c6deaead1d77132335111c9c6a05448e0 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
/**
*
*/
package com.android.internal.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
}
}