diff --git a/src/main/java/org/takes/rq/ChunkedInputStream.java b/src/main/java/org/takes/rq/ChunkedInputStream.java index b84f28c60..0dee6bcbf 100644 --- a/src/main/java/org/takes/rq/ChunkedInputStream.java +++ b/src/main/java/org/takes/rq/ChunkedInputStream.java @@ -37,7 +37,6 @@ /** * Input stream from chunked coded http request body. - * * @link Chunked Transfer Coding * @since 0.31.2 */ @@ -129,7 +128,6 @@ public int read(final byte[] buf) throws IOException { /** * Read the CRLF terminator. - * * @throws IOException If an IO error occurs. */ private void readCrlf() throws IOException { @@ -150,7 +148,6 @@ private void readCrlf() throws IOException { /** * Read the next chunk. - * * @throws IOException If an IO error occurs. */ private void nextChunk() throws IOException { @@ -169,7 +166,6 @@ private void nextChunk() throws IOException { * Expects the stream to start with a chunksize in hex with optional * comments after a semicolon. The line must end with a CRLF: "a3; some * comment\r\n" Positions the stream at the start of the next line. - * * @param stream The new input stream. * @return The chunk size as integer * @throws IOException when the chunk size could not be parsed @@ -230,7 +226,6 @@ private enum State { /** * Extract line with chunk size from stream. - * * @param stream Input stream. * @return Line with chunk size. * @throws IOException If fails. @@ -247,7 +242,6 @@ private static ByteArrayOutputStream sizeLine(final InputStream stream) /** * Get next state for FSM. - * * @param stream Input stream. * @param state Current state. * @param line Current chunk size line. @@ -289,7 +283,6 @@ private static State next(final InputStream stream, final State state, /** * Maintain next symbol for current state = State.NORMAL. - * * @param state Current state. * @param line Current chunk size line. * @param next Next symbol. @@ -315,7 +308,6 @@ private static State nextNormal(final State state, /** * Maintain next symbol for current state = State.QUOTED_STRING. - * * @param stream Input stream. * @param state Current state. * @param line Current chunk size line.