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

com.vtence.molecule.lib.EmptyInputStream Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy