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

com.carrotsearch.ant.tasks.junit4.slave.NullWriter Maven / Gradle / Ivy

package com.carrotsearch.ant.tasks.junit4.slave;

import java.io.IOException;
import java.io.Writer;


final class NullWriter extends Writer {
  @Override
  public void write(char[] cbuf, int off, int len) throws IOException {
  }

  @Override
  public void flush() throws IOException {
  }

  @Override
  public void close() throws IOException {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy