javadoc fixes part 3 (ticket #1894)

This commit is contained in:
zzz
2017-01-26 20:51:05 +00:00
parent 8bb114e9c4
commit e461e8fb4f
10 changed files with 23 additions and 23 deletions

View File

@@ -71,7 +71,7 @@ public class MultiPartRequest
/** Constructor.
* @param request The request containing a multipart/form-data
* request
* @exception IOException IOException
* @throws IOException IOException
*/
public MultiPartRequest(HttpServletRequest request)
throws IOException

View File

@@ -113,7 +113,7 @@ public class LineInput extends FilterInputStream
* @param in The underlying input stream.
* @param bufferSize The buffer size and maximum line length.
* @param encoding the character encoding to use for readLine methods.
* @exception UnsupportedEncodingException
* @throws UnsupportedEncodingException
*/
public LineInput(InputStream in, int bufferSize, String encoding)
throws UnsupportedEncodingException
@@ -180,7 +180,7 @@ public class LineInput extends FilterInputStream
* The default or supplied encoding is used to convert bytes to
* characters.
* @return The line as a String or null for EOF.
* @exception IOException
* @throws IOException
*/
public synchronized String readLine()
throws IOException
@@ -217,7 +217,7 @@ public class LineInput extends FilterInputStream
* @param off Offset into the buffer.
* @param len Maximum length of line.
* @return The length of the line or -1 for EOF.
* @exception IOException
* @throws IOException
*/
public int readLine(char[] c,int off,int len)
throws IOException
@@ -251,7 +251,7 @@ public class LineInput extends FilterInputStream
* @param off Offset into the buffer.
* @param len Maximum length of line.
* @return The length of the line or -1 for EOF.
* @exception IOException
* @throws IOException
*/
public int readLine(byte[] b,int off,int len)
throws IOException
@@ -277,7 +277,7 @@ public class LineInput extends FilterInputStream
* The default or supplied encoding is used to convert bytes to
* characters.
* @return LineBuffer instance or null for EOF.
* @exception IOException
* @throws IOException
*/
public LineBuffer readLineBuffer()
throws IOException
@@ -293,7 +293,7 @@ public class LineInput extends FilterInputStream
* characters.
* @param len Maximum length of a line, or 0 for default
* @return LineBuffer instance or null for EOF.
* @exception IOException
* @throws IOException
*/
public LineBuffer readLineBuffer(int len)
throws IOException