This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push: new ebdaa4a Javadoc. ebdaa4a is described below commit ebdaa4a9f1ada278abbb726873ed94f0ce985bb1 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Thu Jan 28 19:05:50 2021 -0500 Javadoc. --- .../org/apache/commons/io/input/ObservableInputStream.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/io/input/ObservableInputStream.java b/src/main/java/org/apache/commons/io/input/ObservableInputStream.java index 9b7cb2a..f65930c 100644 --- a/src/main/java/org/apache/commons/io/input/ObservableInputStream.java +++ b/src/main/java/org/apache/commons/io/input/ObservableInputStream.java @@ -48,7 +48,7 @@ public class ObservableInputStream extends ProxyInputStream { * on the {@link ObservableInputStream}, and will return a value. * @param pByte The value, which is being returned. This will never be -1 (EOF), * because, in that case, {@link #finished()} will be invoked instead. - * @throws IOException if an i/o-error occurs + * @throws IOException if an I/O error occurs */ public void data(final int pByte) throws IOException { // noop @@ -62,7 +62,7 @@ public class ObservableInputStream extends ProxyInputStream { * data has been stored. * @param pOffset The offset within the byte array, where data has been stored. * @param pLength The number of bytes, which have been stored in the byte array. - * @throws IOException if an i/o-error occurs + * @throws IOException if an I/O error occurs */ public void data(final byte[] pBuffer, final int pOffset, final int pLength) throws IOException { // noop @@ -73,7 +73,7 @@ public class ObservableInputStream extends ProxyInputStream { * This method may be called multiple times, if the reader keeps invoking * either of the read methods, and they will consequently keep returning * EOF. - * @throws IOException if an i/o-error occurs + * @throws IOException if an I/O error occurs */ public void finished() throws IOException { // noop @@ -81,7 +81,7 @@ public class ObservableInputStream extends ProxyInputStream { /** * Called to indicate that the {@link ObservableInputStream} has been closed. - * @throws IOException if an i/o-error occurs + * @throws IOException if an I/O error occurs */ public void closed() throws IOException { // noop @@ -90,7 +90,7 @@ public class ObservableInputStream extends ProxyInputStream { /** * Called to indicate that an error occurred on the underlying stream. * @param pException the exception to throw - * @throws IOException if an i/o-error occurs + * @throws IOException if an I/O error occurs */ public void error(final IOException pException) throws IOException { throw pException;