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-compress.git
The following commit(s) were added to refs/heads/master by this push:
new c8b3d16d0 Javadoc
c8b3d16d0 is described below
commit c8b3d16d0b32479237d72cfc7ae025bd51b1d0e1
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 12 15:24:17 2023 -0500
Javadoc
---
.../org/apache/commons/compress/parallel/InputStreamSupplier.java | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/commons/compress/parallel/InputStreamSupplier.java
b/src/main/java/org/apache/commons/compress/parallel/InputStreamSupplier.java
index f227e6431..09b99ef1b 100644
---
a/src/main/java/org/apache/commons/compress/parallel/InputStreamSupplier.java
+++
b/src/main/java/org/apache/commons/compress/parallel/InputStreamSupplier.java
@@ -33,8 +33,9 @@ import java.io.InputStream;
public interface InputStreamSupplier {
/**
- * Supply an input stream for a resource.
- * @return the input stream. Should never null, but may be an empty stream.
+ * Supplies an input stream for a resource.
+ *
+ * @return the input stream. Should never be null, but may be an empty
stream.
*/
InputStream get();
}