You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2019/08/21 14:09:01 UTC

[commons-compress] branch master updated: javadoc warnings

This is an automated email from the ASF dual-hosted git repository.

bodewig 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 88b3780  javadoc warnings
88b3780 is described below

commit 88b3780f0b04748ec69fa96a504b0b04f30006c1
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Wed Aug 21 16:08:36 2019 +0200

    javadoc warnings
---
 .../apache/commons/compress/archivers/sevenz/SevenZFileOptions.java   | 4 ++++
 1 file changed, 4 insertions(+)

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 1ce913f..5fcd7f4 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
@@ -48,6 +48,7 @@ public class SevenZFileOptions {
 
     /**
      * Obtains a builder for SevenZFileOptions.
+     * @return a builder for SevenZFileOptions.
      */
     public static Builder builder() {
         return new Builder();
@@ -57,6 +58,7 @@ public class SevenZFileOptions {
      * Gets the maximum amount of memory to use for extraction. Not
      * all codecs will honor this setting. Currently only lzma and
      * lzma2 are supported.
+     * @return the maximum amount of memory to use for extraction
      */
     public int getMaxMemoryLimitInKb() {
         return maxMemoryLimitInKb;
@@ -65,6 +67,8 @@ public class SevenZFileOptions {
     /**
      * Gets whether entries without a name should get their names set
      * to the archive's default file name.
+     * @return whether entries without a name should get their names
+     * set to the archive's default file name
      */
     public boolean getUseDefaultNameForUnnamedEntries() {
         return useDefaultNameForUnnamedEntries;