blob: 6b9c18b30c30c9eae2d277fa3c762b65e90005d0 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.util.io;
import java.io.IOException;
import java.io.OutputStream;
/**
* @hide This class is not part of the Android public SDK API
*/
public abstract class SimpleOutputStream extends OutputStream
{
public void close()
{
}
public void flush()
{
}
public void write(int b) throws IOException
{
byte[] buf = new byte[]{ (byte)b };
write(buf, 0, 1);
}
}