diff --git a/httpclient5/src/main/java/org/apache/hc/client5/http/entity/InputStreamFactory.java b/httpclient5/src/main/java/org/apache/hc/client5/http/entity/InputStreamFactory.java index 3e45c15fa..44e30706a 100644 --- a/httpclient5/src/main/java/org/apache/hc/client5/http/entity/InputStreamFactory.java +++ b/httpclient5/src/main/java/org/apache/hc/client5/http/entity/InputStreamFactory.java @@ -36,6 +36,6 @@ import java.io.InputStream; */ public interface InputStreamFactory { - InputStream create(InputStream instream) throws IOException; + InputStream create(InputStream inputStream) throws IOException; }