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

net.dongliu.commons.io.Outputs Maven / Gradle / Ivy

There is a newer version: 12.0.2
Show newest version
package net.dongliu.commons.io;

import java.io.OutputStream;

/**
 * Utils for output stream
 */
public class Outputs {

    /**
     * Return a OutputStream which discard all written data
     */
    public static OutputStream blackHole() {
        return BlackHoleOutputStream.instance;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy