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

org.unlaxer.util.copy.BlackHole Maven / Gradle / Ivy

package org.unlaxer.util.copy;

import java.io.IOException;
import java.io.OutputStream;

public class BlackHole {
	
	static OutputStream outputStream = new OutputStream() {
		
		@Override
		public void write(int b) throws IOException {}
	};
	
	public static OutputStream getOutputStream(){
		return outputStream;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy