Skip to content

Commit ebdaa4a

Browse files
author
Gary Gregory
committed
Javadoc.
1 parent c48ccaf commit ebdaa4a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/apache/commons/io/input/ObservableInputStream.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static abstract class Observer {
4848
* on the {@link ObservableInputStream}, and will return a value.
4949
* @param pByte The value, which is being returned. This will never be -1 (EOF),
5050
* because, in that case, {@link #finished()} will be invoked instead.
51-
* @throws IOException if an i/o-error occurs
51+
* @throws IOException if an I/O error occurs
5252
*/
5353
public void data(final int pByte) throws IOException {
5454
// noop
@@ -62,7 +62,7 @@ public void data(final int pByte) throws IOException {
6262
* data has been stored.
6363
* @param pOffset The offset within the byte array, where data has been stored.
6464
* @param pLength The number of bytes, which have been stored in the byte array.
65-
* @throws IOException if an i/o-error occurs
65+
* @throws IOException if an I/O error occurs
6666
*/
6767
public void data(final byte[] pBuffer, final int pOffset, final int pLength) throws IOException {
6868
// noop
@@ -73,15 +73,15 @@ public void data(final byte[] pBuffer, final int pOffset, final int pLength) thr
7373
* This method may be called multiple times, if the reader keeps invoking
7474
* either of the read methods, and they will consequently keep returning
7575
* EOF.
76-
* @throws IOException if an i/o-error occurs
76+
* @throws IOException if an I/O error occurs
7777
*/
7878
public void finished() throws IOException {
7979
// noop
8080
}
8181

8282
/**
8383
* Called to indicate that the {@link ObservableInputStream} has been closed.
84-
* @throws IOException if an i/o-error occurs
84+
* @throws IOException if an I/O error occurs
8585
*/
8686
public void closed() throws IOException {
8787
// noop
@@ -90,7 +90,7 @@ public void closed() throws IOException {
9090
/**
9191
* Called to indicate that an error occurred on the underlying stream.
9292
* @param pException the exception to throw
93-
* @throws IOException if an i/o-error occurs
93+
* @throws IOException if an I/O error occurs
9494
*/
9595
public void error(final IOException pException) throws IOException {
9696
throw pException;

0 commit comments

Comments
 (0)