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

org.etlunit.io.NullReader Maven / Gradle / Ivy

package org.etlunit.io;

import java.io.IOException;
import java.io.Reader;

public class NullReader extends Reader
{
	@Override
	public int read(char[] chars, int i, int i1) throws IOException
	{
		return -1;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy