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 7323c8b3e3a4e6a9f2cd26ca63724290ce25de5e
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Feb 1 09:10:17 2023 -0500

    Javadoc
---
 .../org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java | 2 ++
 1 file changed, 2 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 200c0d79..cd90b8c5 100644
--- 
a/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
+++ 
b/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
@@ -18,6 +18,7 @@ package org.apache.commons.io.input;
 
 import static java.lang.Math.min;
 
+import java.io.ByteArrayInputStream;
 import java.io.InputStream;
 import java.util.Objects;
 
@@ -26,6 +27,7 @@ import java.util.Objects;
  * which removes the synchronization overhead for non-concurrent
  * access; as such this class is not thread-safe.
  *
+ * @see ByteArrayInputStream
  * @since 2.7
  */
 //@NotThreadSafe

Reply via email to