All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.peterphi.std.io.NullOutputStream Maven / Gradle / Ivy

There is a newer version: 10.1.5
Show newest version
package com.peterphi.std.io;

import java.io.OutputStream;

/**
 * An OutputStream which immediately discards all writes
 */
public final class NullOutputStream extends OutputStream
{

	@Override
	public void write(int b)
	{
		// do nothing
	}


	@Override
	public void write(byte b[])
	{
		// do nothing
	}


	@Override
	public void write(byte b[], int off, int len)
	{
		// do nothing
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy