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

org.codehaus.httpcache4j.util.NullInputStream Maven / Gradle / Ivy

The newest version!
package org.codehaus.httpcache4j.util;


import java.io.ByteArrayInputStream;

/**
 * @author Erlend Hamnaberg
 */
public class NullInputStream extends ByteArrayInputStream {
    public NullInputStream(int length) {
        super(new byte[length]);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy