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

commit 480d430dbcbef444ba602b04dbb0b92937046be4
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Apr 9 18:58:37 2025 -0400

    Javadoc
---
 .../compress/parallel/FileBasedScatterGatherBackingStore.java     | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/compress/parallel/FileBasedScatterGatherBackingStore.java
 
b/src/main/java/org/apache/commons/compress/parallel/FileBasedScatterGatherBackingStore.java
index c2c58ae4a..6d31a2578 100644
--- 
a/src/main/java/org/apache/commons/compress/parallel/FileBasedScatterGatherBackingStore.java
+++ 
b/src/main/java/org/apache/commons/compress/parallel/FileBasedScatterGatherBackingStore.java
@@ -37,6 +37,12 @@ public class FileBasedScatterGatherBackingStore implements 
ScatterGatherBackingS
     private final OutputStream outputStream;
     private boolean closed;
 
+    /**
+     * Constructs a new instance.
+     *
+     * @param target The path to offload compressed data into.
+     * @throws FileNotFoundException if the file doesn't exist.
+     */
     public FileBasedScatterGatherBackingStore(final File target) throws 
FileNotFoundException {
         this(target.toPath());
     }
@@ -45,7 +51,7 @@ public FileBasedScatterGatherBackingStore(final File target) 
throws FileNotFound
      * Constructs a new instance for the given path.
      *
      * @param target The path to offload compressed data into.
-     * @throws FileNotFoundException if the file doesn't exist
+     * @throws FileNotFoundException if the file doesn't exist.
      * @since 1.22
      */
     public FileBasedScatterGatherBackingStore(final Path target) throws 
FileNotFoundException {

Reply via email to