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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy