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

hudson.util.NullStream Maven / Gradle / Ivy

package hudson.util;

import java.io.OutputStream;

/**
 * @author Kohsuke Kawaguchi
 */
public final class NullStream extends OutputStream {
    public NullStream() {}

    public void write(byte b[]) {
    }

    public void write(byte b[], int off, int len) {
    }

    public void write(int b) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy