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

commit cb0ccf943b3493cf8c7e5f071e302c64cd87d6e6
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Aug 6 08:51:20 2024 -0400

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

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 6341f3815..a0b6241b8 100644
--- a/src/main/java/org/apache/commons/io/input/ProxyInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/ProxyInputStream.java
@@ -194,7 +194,9 @@ public abstract class ProxyInputStream extends 
FilterInputStream {
     /**
      * Invokes the delegate's {@link InputStream#markSupported()} method.
      *
-     * @return true if mark is supported, otherwise false
+     * @return {@code true} if this stream instance supports the mark and 
reset methods; {@code false} otherwise.
+     * @see #mark(int)
+     * @see #reset()
      */
     @Override
     public boolean markSupported() {

Reply via email to