Skip to content

Commit 5103544

Browse files
committedJun 18, 2020
8247896: Invalid (@throw) tags in 2 java.io classes
Reviewed-by: mchung
1 parent 6c2c056 commit 5103544

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/java.base/share/classes/java/io/PipedWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public synchronized void connect(PipedReader snk) throws IOException {
112112
* Implements the {@code write} method of {@code Writer}.
113113
*
114114
* @param c the {@code char} to be written.
115-
* @throw IOException if the pipe is
115+
* @throws IOException if the pipe is
116116
* <a href=PipedOutputStream.html#BROKEN> {@code broken}</a>,
117117
* {@link #connect(java.io.PipedReader) unconnected}, closed
118118
* or an I/O error occurs.

‎src/java.base/share/classes/java/io/SequenceInputStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ private void peekNextStream() {
121121
* skipped over) from the current underlying input stream
122122
* without blocking or {@code 0} if this input stream
123123
* has been closed by invoking its {@link #close()} method
124-
* @throw IOException if an I/O error occurs.
124+
* @throws IOException if an I/O error occurs.
125125
*
126126
* @since 1.1
127127
*/

0 commit comments

Comments
 (0)
Please sign in to comment.