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

io.muserver.rest.EmptyInputStream Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package io.muserver.rest;

import java.io.InputStream;

class EmptyInputStream extends InputStream {
    static final InputStream INSTANCE = new EmptyInputStream();

    private EmptyInputStream() {
    }

    public int read() {
        return -1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy