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 1a6c3318 Javadoc
1a6c3318 is described below

commit 1a6c3318ef48c64e975a32836539312ef011ae4f
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jan 14 08:40:31 2024 -0500

    Javadoc
---
 src/main/java/org/apache/commons/io/input/ProxyInputStream.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/input/ProxyInputStream.java 
b/src/main/java/org/apache/commons/io/input/ProxyInputStream.java
index fb40ae10..b5741cd0 100644
--- a/src/main/java/org/apache/commons/io/input/ProxyInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/ProxyInputStream.java
@@ -66,8 +66,8 @@ public abstract class ProxyInputStream extends 
FilterInputStream {
      * </p>
      *
      * @since 2.0
-     * @param n number of bytes read, or -1 if the end of stream was reached
-     * @throws IOException if the post-processing fails
+     * @param n number of bytes read, or -1 if the end of stream was reached.
+     * @throws IOException if the post-processing fails in a subclass.
      */
     @SuppressWarnings("unused") // Possibly thrown from subclasses.
     protected void afterRead(final int n) throws IOException {
@@ -107,8 +107,8 @@ public abstract class ProxyInputStream extends 
FilterInputStream {
      * </p>
      *
      * @since 2.0
-     * @param n number of bytes that the caller asked to be read
-     * @throws IOException if the pre-processing fails
+     * @param n number of bytes that the caller asked to be read.
+     * @throws IOException if the pre-processing fails in a subclass.
      */
     @SuppressWarnings("unused") // Possibly thrown from subclasses.
     protected void beforeRead(final int n) throws IOException {

Reply via email to