You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/09/03 12:28:13 UTC

[commons-io] 01/03: Javadoc.

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 a65adce3689490d3da6532760696de1b61aaf3b8
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Sep 3 08:13:40 2020 -0400

    Javadoc.
---
 .../apache/commons/io/input/UnsynchronizedByteArrayInputStream.java    | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java b/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
index 82fb881..2f20c6b 100644
--- a/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
@@ -31,6 +31,9 @@ import static java.lang.Math.min;
 //@NotThreadSafe
 public class UnsynchronizedByteArrayInputStream extends InputStream {
 
+    /**
+     * The end of stream marker.
+     */
     public static final int END_OF_STREAM = -1;
 
     /**