org.etlunit.io.NullWriter Maven / Gradle / Ivy
package org.etlunit.io;
import java.io.IOException;
import java.io.Writer;
public 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 - 2025 Weber Informatics LLC | Privacy Policy