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 82403058d Javadoc 82403058d is described below commit 82403058dea32da45a41733ba0d109b45dcb2d4a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Oct 18 12:14:24 2024 -0400 Javadoc --- .../org/apache/commons/compress/archivers/ArchiveStreamFactory.java | 2 +- .../apache/commons/compress/compressors/CompressorStreamFactory.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java index b1d798f47..1ee518a9c 100644 --- a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java +++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java @@ -49,7 +49,7 @@ import org.apache.commons.compress.utils.IOUtils; import org.apache.commons.compress.utils.Sets; /** - * Factory to create Archive[In|Out]putStreams from names or the first bytes of the InputStream. In order to add other implementations, you should extend + * Creates an Archive[In|Out]putStreams from names or the first bytes of the InputStream. In order to add other implementations, you should extend * ArchiveStreamFactory and override the appropriate methods (and call their implementation from super of course). * * Compressing a ZIP-File: diff --git a/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java b/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java index e171c5698..8d94b63de 100644 --- a/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java +++ b/src/main/java/org/apache/commons/compress/compressors/CompressorStreamFactory.java @@ -63,7 +63,7 @@ import org.apache.commons.compress.utils.Sets; /** * <p> - * Factory to create Compressor[In|Out]putStreams from names. To add other implementations you should extend CompressorStreamFactory and override the + * Creates a Compressor[In|Out]putStreams from names. To add other implementations you should extend CompressorStreamFactory and override the * appropriate methods (and call their implementation from super of course). * </p> *