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

net.pincette.io.DevNullOutputStream Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package net.pincette.io;

import java.io.OutputStream;

/**
 * This output stream gobbles all output.
 *
 * @author Werner Donn\u00e9
 */
public class DevNullOutputStream extends OutputStream {
  @Override
  public void close() {
    // Purpose of the class.
  }

  @Override
  public void flush() {
    // Purpose of the class.
  }

  @Override
  public void write(final byte[] b) {
    // Purpose of the class.
  }

  @Override
  public void write(final byte[] b, final int off, final int len) {
    // Purpose of the class.
  }

  public void write(final int b) {
    // Purpose of the class.
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy