com.vtence.molecule.lib.EmptyInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molecule Show documentation
Show all versions of molecule Show documentation
A web micro-framework for Java
package com.vtence.molecule.lib;
import java.io.IOException;
import java.io.InputStream;
public class EmptyInputStream extends InputStream {
public int read() throws IOException {
return -1;
}
}