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 2022/12/06 11:51:00 UTC

[commons-compress] 02/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-compress.git

commit d38bbf76aa3e0d51fcca45fcfe851eaa99045915
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Dec 2 08:45:36 2022 -0500

    Javadoc
---
 .../commons/compress/archivers/sevenz/SevenZFileOptions.java       | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java
index 3cfad175..0cb6f417 100644
--- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java
+++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFileOptions.java
@@ -132,11 +132,12 @@ public class SevenZFileOptions {
         /**
          * Sets whether {@link SevenZFile} will try to revover broken archives where the CRC of the file's metadata is
          * 0.
-         *
-         * <p>This special kind of broken archive is encountered when mutli volume archives are closed prematurely. If
+         * <p>
+         * This special kind of broken archive is encountered when mutli volume archives are closed prematurely. If
          * you enable this option SevenZFile will trust data that looks as if it could contain metadata of an archive
          * and allocate big amounts of memory. It is strongly recommended to not enable this option without setting
          * {@link #withMaxMemoryLimitInKb} at the same time.
+         * </p>
          *
          * @param tryToRecoverBrokenArchives if true SevenZFile will try to recover archives that are broken in the
          * specific way
@@ -149,7 +150,7 @@ public class SevenZFileOptions {
         }
 
         /**
-         * Create the {@link SevenZFileOptions}.
+         * Builds the {@link SevenZFileOptions}.
          *
          * @return configured {@link SevenZFileOptions}.
          */