From 5bdfbbc7d1fc9ac1133fb93df24b68277fdd4eca Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Mon, 3 Mar 2014 07:03:58 +0100 Subject: [PATCH] [#2261] Correct javadoc of ChunkedInput --- handler/src/main/java/io/netty/handler/stream/ChunkedInput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handler/src/main/java/io/netty/handler/stream/ChunkedInput.java b/handler/src/main/java/io/netty/handler/stream/ChunkedInput.java index 582ad1fc3b..fa6fd85322 100644 --- a/handler/src/main/java/io/netty/handler/stream/ChunkedInput.java +++ b/handler/src/main/java/io/netty/handler/stream/ChunkedInput.java @@ -37,7 +37,7 @@ public interface ChunkedInput { /** * Fetches a chunked data from the stream. Once this method returns the last chunk * and thus the stream has reached at its end, any subsequent {@link #isEndOfInput()} - * call must return {@code false}. + * call must return {@code true}. * * @return the fetched chunk. * {@code null} if there is no data left in the stream.