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

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

There is a newer version: 1.6.9
Show newest version
package org.etlunit.io;

import java.io.IOException;
import java.io.InputStream;

public class NullInputStream extends InputStream
{
	@Override
	public int read() throws IOException
	{
		return -1;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy