8247896: Invalid (@throw) tags in 2 java.io classes

Reviewed-by: mchung
This commit is contained in:
Jonathan Gibbons 2020-06-18 16:21:34 -07:00
parent 6c2c0563eb
commit 510354452f
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public class PipedWriter extends Writer {
* Implements the {@code write} method of {@code Writer}.
*
* @param c the {@code char} to be written.
* @throw IOException if the pipe is
* @throws IOException if the pipe is
* <a href=PipedOutputStream.html#BROKEN> {@code broken}</a>,
* {@link #connect(java.io.PipedReader) unconnected}, closed
* or an I/O error occurs.

View File

@ -121,7 +121,7 @@ public class SequenceInputStream extends InputStream {
* skipped over) from the current underlying input stream
* without blocking or {@code 0} if this input stream
* has been closed by invoking its {@link #close()} method
* @throw IOException if an I/O error occurs.
* @throws IOException if an I/O error occurs.
*
* @since 1.1
*/