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

org.jboss.resteasy.reactive.common.util.EmptyInputStream Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package org.jboss.resteasy.reactive.common.util;

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

public class EmptyInputStream extends InputStream {

    public static final EmptyInputStream INSTANCE = new EmptyInputStream();

    @Override
    public int read() throws IOException {
        return -1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy